diff options
author | David Reid <dreid@dreid.org> | 2013-11-13 10:41:28 -0800 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2013-11-13 10:41:28 -0800 |
commit | 2d45bc3295c62e09dd06f19e206735e374bddd61 (patch) | |
tree | f8949a7ebe891bbaa183cda6146314e67708133d /tests/hazmat/primitives/test_arc4.py | |
parent | 4826ec6e7602a3d2bca687afadb97a04a5e85ff2 (diff) | |
parent | e5aa205070877852ff2d54eebcc0d4ac9cf8465e (diff) | |
download | cryptography-2d45bc3295c62e09dd06f19e206735e374bddd61.tar.gz cryptography-2d45bc3295c62e09dd06f19e206735e374bddd61.tar.bz2 cryptography-2d45bc3295c62e09dd06f19e206735e374bddd61.zip |
Merge pull request #255 from alex/remove-backends
Remove the hash and hmac specific classes, now that the logic is the Con...
Diffstat (limited to 'tests/hazmat/primitives/test_arc4.py')
-rw-r--r-- | tests/hazmat/primitives/test_arc4.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_arc4.py b/tests/hazmat/primitives/test_arc4.py index 302658f6..d233bec2 100644 --- a/tests/hazmat/primitives/test_arc4.py +++ b/tests/hazmat/primitives/test_arc4.py @@ -36,7 +36,7 @@ class TestARC4(object): "rfc-6229-256.txt", ], lambda key: algorithms.ARC4(binascii.unhexlify((key))), - only_if=lambda backend: backend.ciphers.supported( + only_if=lambda backend: backend.cipher_supported( algorithms.ARC4("\x00" * 16), None ), skip_message="Does not support ARC4", |