diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-11-28 13:23:34 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-11-28 13:23:34 -0600 |
commit | 5dcdd10b0ce56da1d7088d80b4e24c66e5407e35 (patch) | |
tree | fb8eb099222e2fd33ead0c090808a6277d94f2ec /tests | |
parent | 7f7fab8f2bb48056149e2717f440b13c3ce5fcf8 (diff) | |
parent | 6c83cc6d867ee8060b4826ca160770fb6968d784 (diff) | |
download | cryptography-5dcdd10b0ce56da1d7088d80b4e24c66e5407e35.tar.gz cryptography-5dcdd10b0ce56da1d7088d80b4e24c66e5407e35.tar.bz2 cryptography-5dcdd10b0ce56da1d7088d80b4e24c66e5407e35.zip |
Merge pull request #2495 from eakret/master
Add support for 160 bit ARC4 keys
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hazmat/primitives/test_arc4.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/hazmat/primitives/test_arc4.py b/tests/hazmat/primitives/test_arc4.py index acd306b2..00fc95b0 100644 --- a/tests/hazmat/primitives/test_arc4.py +++ b/tests/hazmat/primitives/test_arc4.py @@ -35,6 +35,7 @@ class TestARC4(object): "rfc-6229-128.txt", "rfc-6229-192.txt", "rfc-6229-256.txt", + "arc4.txt" ], lambda key, **kwargs: algorithms.ARC4(binascii.unhexlify(key)), ) |