aboutsummaryrefslogtreecommitdiffstats
path: root/tests/primitives
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-10-21 18:34:37 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-10-21 18:34:37 -0700
commita3106b1ef5c23b2851680ecc94047688e43e4101 (patch)
treeb48e8e71f946bd0fdcd6f4405ae9e942230974fc /tests/primitives
parent8af0390bcc054734c7fd3f0c896fdc1401f8d6aa (diff)
downloadcryptography-a3106b1ef5c23b2851680ecc94047688e43e4101.tar.gz
cryptography-a3106b1ef5c23b2851680ecc94047688e43e4101.tar.bz2
cryptography-a3106b1ef5c23b2851680ecc94047688e43e4101.zip
Remove this, it's not really CBC
Diffstat (limited to 'tests/primitives')
-rw-r--r--tests/primitives/test_nist.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/primitives/test_nist.py b/tests/primitives/test_nist.py
index 40b45337..2902f932 100644
--- a/tests/primitives/test_nist.py
+++ b/tests/primitives/test_nist.py
@@ -225,22 +225,6 @@ class TestTripleDES_CBC(object):
lambda key1, key2, key3, iv: modes.CBC(binascii.unhexlify(iv)),
)
- test_MMT2 = generate_encrypt_test(
- lambda path: load_nist_vectors_from_file(path, "ENCRYPT"),
- os.path.join("3DES", "MMT"),
- [
- "TCBCIMMT1.rsp",
- "TCBCIMMT2.rsp",
- "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(binascii.unhexlify(iv1 + iv2 + iv3))
- ),
- )
-
class TestTripleDES_OFB(object):
test_KAT1 = generate_encrypt_test(