aboutsummaryrefslogtreecommitdiffstats
path: root/tests/primitives/test_cryptrec.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-22 21:45:16 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-22 21:45:16 -0500
commit14c3a35447c61e63196a46100a009ee2ea3102a2 (patch)
treea94fb1889f872c6541730a1685e941cd06f05ddf /tests/primitives/test_cryptrec.py
parentf4c59767cdfe7716c82a72b00baa427637b505bd (diff)
downloadcryptography-14c3a35447c61e63196a46100a009ee2ea3102a2.tar.gz
cryptography-14c3a35447c61e63196a46100a009ee2ea3102a2.tar.bz2
cryptography-14c3a35447c61e63196a46100a009ee2ea3102a2.zip
split backend up (refs #170)
* Moves cipher methods into a Ciphers class and hash methods to a Hashes class and makes them available inside Backend as pluralized attributes. * Shortened many of the methods since their purpose is now defined by their container class
Diffstat (limited to 'tests/primitives/test_cryptrec.py')
-rw-r--r--tests/primitives/test_cryptrec.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/primitives/test_cryptrec.py b/tests/primitives/test_cryptrec.py
index d8c9aaa3..5e0b12df 100644
--- a/tests/primitives/test_cryptrec.py
+++ b/tests/primitives/test_cryptrec.py
@@ -37,7 +37,7 @@ class TestCamelliaECB(object):
],
lambda key: ciphers.Camellia(binascii.unhexlify((key))),
lambda key: modes.ECB(),
- only_if=lambda backend: backend.supports_cipher(
+ only_if=lambda backend: backend.ciphers.supported(
ciphers.Camellia("\x00" * 16), modes.ECB()
),
skip_message="Does not support Camellia ECB",