diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-21 18:37:25 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-21 18:37:25 -0700 |
commit | df146c572fb58df8348947fb201f00193944f016 (patch) | |
tree | 0c2a55e366289d3b9cd193c7c8c57a8d88442f3f /tests/primitives/test_nist.py | |
parent | a3106b1ef5c23b2851680ecc94047688e43e4101 (diff) | |
download | cryptography-df146c572fb58df8348947fb201f00193944f016.tar.gz cryptography-df146c572fb58df8348947fb201f00193944f016.tar.bz2 cryptography-df146c572fb58df8348947fb201f00193944f016.zip |
These are also interleaved
Diffstat (limited to 'tests/primitives/test_nist.py')
-rw-r--r-- | tests/primitives/test_nist.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/primitives/test_nist.py b/tests/primitives/test_nist.py index 2902f932..0c847879 100644 --- a/tests/primitives/test_nist.py +++ b/tests/primitives/test_nist.py @@ -269,22 +269,6 @@ class TestTripleDES_OFB(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"), - [ - "TOFBIMMT1.rsp", - "TOFBIMMT2.rsp", - "TOFBIMMT3.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_CFB(object): pass |