diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-21 17:14:47 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-21 17:14:47 -0700 |
commit | 8af0390bcc054734c7fd3f0c896fdc1401f8d6aa (patch) | |
tree | e637a69875c08de026ed632ccd9ea7b2fec28f1e | |
parent | d4728627e1a56d69c4f0df7692ea5abcf8e01d36 (diff) | |
download | cryptography-8af0390bcc054734c7fd3f0c896fdc1401f8d6aa.tar.gz cryptography-8af0390bcc054734c7fd3f0c896fdc1401f8d6aa.tar.bz2 cryptography-8af0390bcc054734c7fd3f0c896fdc1401f8d6aa.zip |
fix
-rw-r--r-- | tests/primitives/test_nist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/primitives/test_nist.py b/tests/primitives/test_nist.py index a460a3f4..40b45337 100644 --- a/tests/primitives/test_nist.py +++ b/tests/primitives/test_nist.py @@ -258,7 +258,7 @@ class TestTripleDES_OFB(object): ) test_KAT2 = 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"), [ "TOFBIinvperm.rsp", |