aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/bindings/test_openssl.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-11-19 16:49:26 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2013-11-19 16:49:26 -0800
commit9626b5a50460d2f90baa1f1b8c6a09ccc900c178 (patch)
treee6bd8686168074a76711fc17bf18af06a257e4d0 /tests/hazmat/bindings/test_openssl.py
parenteb7f2a37fee0fdeb70f650b46f580b2eab6d0c05 (diff)
downloadcryptography-9626b5a50460d2f90baa1f1b8c6a09ccc900c178.tar.gz
cryptography-9626b5a50460d2f90baa1f1b8c6a09ccc900c178.tar.bz2
cryptography-9626b5a50460d2f90baa1f1b8c6a09ccc900c178.zip
Validate the IV/nonce length for a given algorithm.
Fixes #159
Diffstat (limited to 'tests/hazmat/bindings/test_openssl.py')
-rw-r--r--tests/hazmat/bindings/test_openssl.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/hazmat/bindings/test_openssl.py b/tests/hazmat/bindings/test_openssl.py
index 9f27aab7..1cadc75c 100644
--- a/tests/hazmat/bindings/test_openssl.py
+++ b/tests/hazmat/bindings/test_openssl.py
@@ -23,7 +23,8 @@ from cryptography.hazmat.primitives.ciphers.modes import CBC
class DummyMode(object):
- pass
+ def validate_for_algorithm(self, algorithm):
+ pass
@utils.register_interface(interfaces.CipherAlgorithm)