diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-21 17:02:11 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-21 17:02:11 -0700 |
commit | 58dbc672b2ac5529240ba4cf792800686b51af80 (patch) | |
tree | 984a254574041b6d4845aae9dea6f663da0a79b1 /tests/primitives | |
parent | dc42400cc91147b2574be2012ab8004e4f652bcc (diff) | |
download | cryptography-58dbc672b2ac5529240ba4cf792800686b51af80.tar.gz cryptography-58dbc672b2ac5529240ba4cf792800686b51af80.tar.bz2 cryptography-58dbc672b2ac5529240ba4cf792800686b51af80.zip |
No need for another test function
Diffstat (limited to 'tests/primitives')
-rw-r--r-- | tests/primitives/test_nist.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/primitives/test_nist.py b/tests/primitives/test_nist.py index 99f5fc82..abd04b6d 100644 --- a/tests/primitives/test_nist.py +++ b/tests/primitives/test_nist.py @@ -205,15 +205,6 @@ class TestTripleDES_CBC(object): "TCBCIsubtab.rsp", "TCBCIvarkey.rsp", "TCBCIvartext.rsp", - ], - lambda key, iv: ciphers.TripleDES(binascii.unhexlify(key)), - lambda key, iv: modes.CBC(binascii.unhexlify(iv)), - ) - - test_KAT3 = generate_encrypt_test( - lambda path: load_3des_nist_vectors_from_file(path, "ENCRYPT"), - os.path.join("3DES", "KAT"), - [ "TCBCIinvperm.rsp", ], lambda key, iv: ciphers.TripleDES(binascii.unhexlify(key)), |