aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorEhren Kret <ehren.kret@gmail.com>2015-11-28 02:16:15 -0800
committerEhren Kret <ehren.kret@gmail.com>2015-11-28 02:22:19 -0800
commitd01c20fb29dc3a6ba53accd3bd561c05715f62c9 (patch)
tree133958e1e32ba0c5ddd252f408f3a8daaf302ad3 /tests
parent7f7fab8f2bb48056149e2717f440b13c3ce5fcf8 (diff)
downloadcryptography-d01c20fb29dc3a6ba53accd3bd561c05715f62c9.tar.gz
cryptography-d01c20fb29dc3a6ba53accd3bd561c05715f62c9.tar.bz2
cryptography-d01c20fb29dc3a6ba53accd3bd561c05715f62c9.zip
Add support for 160 bit ARC4 keys
Diffstat (limited to 'tests')
-rw-r--r--tests/hazmat/primitives/test_arc4.py1
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)),
)