aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_aes.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-11-13 09:49:23 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-11-13 09:49:23 -0800
commite5aa205070877852ff2d54eebcc0d4ac9cf8465e (patch)
treef8949a7ebe891bbaa183cda6146314e67708133d /tests/hazmat/primitives/test_aes.py
parent063a3a25630df98f4524fdc54a55cef670810d9f (diff)
downloadcryptography-e5aa205070877852ff2d54eebcc0d4ac9cf8465e.tar.gz
cryptography-e5aa205070877852ff2d54eebcc0d4ac9cf8465e.tar.bz2
cryptography-e5aa205070877852ff2d54eebcc0d4ac9cf8465e.zip
Also remove teh ciphers specific class
Diffstat (limited to 'tests/hazmat/primitives/test_aes.py')
-rw-r--r--tests/hazmat/primitives/test_aes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_aes.py b/tests/hazmat/primitives/test_aes.py
index 7c8cab72..d178da7b 100644
--- a/tests/hazmat/primitives/test_aes.py
+++ b/tests/hazmat/primitives/test_aes.py
@@ -127,7 +127,7 @@ class TestAES(object):
["aes-128-ctr.txt", "aes-192-ctr.txt", "aes-256-ctr.txt"],
lambda key, iv: algorithms.AES(binascii.unhexlify(key)),
lambda key, iv: modes.CTR(binascii.unhexlify(iv)),
- only_if=lambda backend: backend.ciphers.supported(
+ only_if=lambda backend: backend.cipher_supported(
algorithms.AES("\x00" * 16), modes.CTR("\x00" * 16)
),
skip_message="Does not support AES CTR",