aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-10-21 16:16:29 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-10-21 16:16:29 -0700
commit5e04ba6cd77d210a73249ca36389148d359e046c (patch)
treea6e0760bb5163c1257eaed8e83de232ecc86416d
parent9f79164a8d7d5004884b455d07c2ab1b111d037e (diff)
downloadcryptography-5e04ba6cd77d210a73249ca36389148d359e046c.tar.gz
cryptography-5e04ba6cd77d210a73249ca36389148d359e046c.tar.bz2
cryptography-5e04ba6cd77d210a73249ca36389148d359e046c.zip
Initial working state
-rw-r--r--cryptography/bindings/openssl/api.py8
-rw-r--r--cryptography/primitives/block/ciphers.py4
-rw-r--r--tests/primitives/test_nist.py34
3 files changed, 31 insertions, 15 deletions
diff --git a/cryptography/bindings/openssl/api.py b/cryptography/bindings/openssl/api.py
index 7d189d62..3d92c144 100644
--- a/cryptography/bindings/openssl/api.py
+++ b/cryptography/bindings/openssl/api.py
@@ -19,7 +19,7 @@ import sys
import cffi
from cryptography.primitives import interfaces
-from cryptography.primitives.block.ciphers import AES, Camellia
+from cryptography.primitives.block.ciphers import AES, Camellia, TripleDES
from cryptography.primitives.block.modes import CBC, CTR, ECB, OFB, CFB
@@ -135,6 +135,12 @@ class API(object):
mode_cls,
GetCipherByName("{cipher.name}-{cipher.key_size}-{mode.name}")
)
+ for mode_cls in [CBC, CFB, OFB]:
+ self.register_cipher_adapter(
+ TripleDES,
+ mode_cls,
+ GetCipherByName("des-ede3-{mode.name}")
+ )
def create_block_cipher_context(self, cipher, mode):
ctx = self.lib.EVP_CIPHER_CTX_new()
diff --git a/cryptography/primitives/block/ciphers.py b/cryptography/primitives/block/ciphers.py
index f10a349a..5d32772a 100644
--- a/cryptography/primitives/block/ciphers.py
+++ b/cryptography/primitives/block/ciphers.py
@@ -63,6 +63,10 @@ class TripleDES(object):
def __init__(self, key):
super(TripleDES, self).__init__()
+ if len(key) == 8:
+ key += key + key
+ elif len(key) == 16:
+ key += key[:8]
self.key = key
# Verify that the key size matches the expected key size
diff --git a/tests/primitives/test_nist.py b/tests/primitives/test_nist.py
index 8c8a3818..117764bf 100644
--- a/tests/primitives/test_nist.py
+++ b/tests/primitives/test_nist.py
@@ -27,12 +27,18 @@ from ..utils import load_nist_vectors_from_file
def load_3des_nist_vectors_from_file(path, op):
- vectors = load_nist_vectors_from_file(path, op)
- for vector in vectors:
- vector["ciphertext"] = vector["ciphertext3"]
- del vector["ciphertext1"]
- del vector["ciphertext2"]
- del vector["ciphertext3"]
+ vectors = []
+ for vector in load_nist_vectors_from_file(path, op):
+ for i in xrange(1, 4):
+ plaintext = vector.get("plaintext{0}".format(i))
+ if plaintext is None:
+ plaintext = vector["plaintext"]
+ vectors.append({
+ "key": vector["keys"],
+ "iv": vector["iv{0}".format(i)],
+ "ciphertext": vector["ciphertext{0}".format(i)],
+ "plaintext": plaintext,
+ })
return vectors
@@ -188,7 +194,7 @@ class TestTripleDES_CBC(object):
"TCBCvartext.rsp",
],
lambda keys, iv: ciphers.TripleDES(binascii.unhexlify(keys)),
- lambda keys, iv: modes.CBC(iv),
+ lambda keys, iv: modes.CBC(binascii.unhexlify(iv)),
)
test_KAT2 = generate_encrypt_test(
@@ -200,18 +206,18 @@ class TestTripleDES_CBC(object):
"TCBCIvarkey.rsp",
"TCBCIvartext.rsp",
],
- lambda keys, iv1, iv2, iv3: ciphers.TripleDES(binascii.unhexlify(keys)),
- lambda keys, iv1, iv2, iv3: modes.CBC(iv1 + iv2 + iv3),
+ lambda key, iv: ciphers.TripleDES(binascii.unhexlify(key)),
+ lambda key, iv: modes.CBC(binascii.unhexlify(iv)),
)
test_KAT3 = generate_encrypt_test(
- lambda path: load_nist_vectors_from_file(path, "ENCRYPT"),
+ lambda path: load_3des_nist_vectors_from_file(path, "ENCRYPT"),
os.path.join("3DES", "KAT"),
[
"TCBCIinvperm.rsp",
],
- lambda keys, iv1, iv2, iv3: ciphers.TripleDES(binascii.unhexlify(keys)),
- lambda keys, iv1, iv2, iv3: modes.CBC(iv1 + iv2 + iv3),
+ lambda key, iv: ciphers.TripleDES(binascii.unhexlify(key)),
+ lambda key, iv: modes.CBC(binascii.unhexlify(iv)),
)
test_MMT1 = generate_encrypt_test(
@@ -223,7 +229,7 @@ class TestTripleDES_CBC(object):
"TCBCIMMT3.rsp",
],
lambda key1, key2, key3, iv1, iv2, iv3: ciphers.TripleDES(binascii.unhexlify(key1 + key2 + key3)),
- lambda key1, key2, key3, iv1, iv2, iv3: modes.CBC(iv1 + iv2 + iv3),
+ lambda key1, key2, key3, iv1, iv2, iv3: modes.CBC(binascii.unhexlify(iv1 + iv2 + iv3)),
)
test_MMT1 = generate_encrypt_test(
@@ -235,5 +241,5 @@ class TestTripleDES_CBC(object):
"TCBCMMT3.rsp",
],
lambda key1, key2, key3, iv: ciphers.TripleDES(binascii.unhexlify(key1 + key2 + key3)),
- lambda key1, key2, key3, iv: modes.CBC(iv),
+ lambda key1, key2, key3, iv: modes.CBC(binascii.unhexlify(iv)),
)