diff options
author | Donald Stufft <donald@stufft.io> | 2013-11-17 10:52:33 -0800 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2013-11-17 10:52:33 -0800 |
commit | 4a28d323b1227860da118a933d5f4940acaef999 (patch) | |
tree | e354636fdb891044548a3bb7042a253bfa97a616 /tests/hazmat/bindings/test_openssl.py | |
parent | 83e0e1f00224c1f995298226c2e0837d555af67c (diff) | |
parent | 0a394df31c4165d0230843ebea2717b3cd3caafa (diff) | |
download | cryptography-4a28d323b1227860da118a933d5f4940acaef999.tar.gz cryptography-4a28d323b1227860da118a933d5f4940acaef999.tar.bz2 cryptography-4a28d323b1227860da118a933d5f4940acaef999.zip |
Merge pull request #262 from dreid/cipher-algorithm-interfaces
Implement and document an interface for cipher algorithms
Diffstat (limited to 'tests/hazmat/bindings/test_openssl.py')
-rw-r--r-- | tests/hazmat/bindings/test_openssl.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/tests/hazmat/bindings/test_openssl.py b/tests/hazmat/bindings/test_openssl.py index 241c6411..e4f8dd8b 100644 --- a/tests/hazmat/bindings/test_openssl.py +++ b/tests/hazmat/bindings/test_openssl.py @@ -15,16 +15,18 @@ import pytest from cryptography.exceptions import UnsupportedAlgorithm from cryptography.hazmat.bindings.openssl.backend import backend, Backend +from cryptography.hazmat.primitives import interfaces from cryptography.hazmat.primitives.ciphers import Cipher from cryptography.hazmat.primitives.ciphers.algorithms import AES from cryptography.hazmat.primitives.ciphers.modes import CBC -class FakeMode(object): +class DummyMode(object): pass -class FakeCipher(object): +@interfaces.register(interfaces.CipherAlgorithm) +class DummyCipher(object): pass @@ -58,12 +60,12 @@ class TestOpenSSL(object): def test_nonexistent_cipher(self): b = Backend() b.register_cipher_adapter( - FakeCipher, - FakeMode, + DummyCipher, + DummyMode, lambda backend, cipher, mode: backend.ffi.NULL ) cipher = Cipher( - FakeCipher(), FakeMode(), backend=b, + DummyCipher(), DummyMode(), backend=b, ) with pytest.raises(UnsupportedAlgorithm): cipher.encryptor() |