summaryrefslogtreecommitdiffstats
path: root/src/lib/tlslite/utils/TripleDES.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/tlslite/utils/TripleDES.py')
-rwxr-xr-xsrc/lib/tlslite/utils/TripleDES.py26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/lib/tlslite/utils/TripleDES.py b/src/lib/tlslite/utils/TripleDES.py
deleted file mode 100755
index 2db45888b..000000000
--- a/src/lib/tlslite/utils/TripleDES.py
+++ /dev/null
@@ -1,26 +0,0 @@
-"""Abstract class for 3DES."""
-
-from compat import * #For True
-
-class TripleDES:
- def __init__(self, key, mode, IV, implementation):
- if len(key) != 24:
- raise ValueError()
- if mode != 2:
- raise ValueError()
- if len(IV) != 8:
- raise ValueError()
- self.isBlockCipher = True
- self.block_size = 8
- self.implementation = implementation
- self.name = "3des"
-
- #CBC-Mode encryption, returns ciphertext
- #WARNING: *MAY* modify the input as well
- def encrypt(self, plaintext):
- assert(len(plaintext) % 8 == 0)
-
- #CBC-Mode decryption, returns plaintext
- #WARNING: *MAY* modify the input as well
- def decrypt(self, ciphertext):
- assert(len(ciphertext) % 8 == 0)