diff options
author | David Reid <dreid@dreid.org> | 2013-11-15 16:19:50 -0800 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2013-11-15 16:19:50 -0800 |
commit | 0a394df31c4165d0230843ebea2717b3cd3caafa (patch) | |
tree | 5c674a900d0f7465cde2796b9bba21a87d67b56e /tests/hazmat/primitives | |
parent | 9489c769dbd7ea7c6830b5fcd70095818452e607 (diff) | |
download | cryptography-0a394df31c4165d0230843ebea2717b3cd3caafa.tar.gz cryptography-0a394df31c4165d0230843ebea2717b3cd3caafa.tar.bz2 cryptography-0a394df31c4165d0230843ebea2717b3cd3caafa.zip |
Implement and document an interface for cipher algorithms
Diffstat (limited to 'tests/hazmat/primitives')
-rw-r--r-- | tests/hazmat/primitives/test_block.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_block.py b/tests/hazmat/primitives/test_block.py index 938cff36..963136b9 100644 --- a/tests/hazmat/primitives/test_block.py +++ b/tests/hazmat/primitives/test_block.py @@ -24,6 +24,11 @@ from cryptography.hazmat.primitives.ciphers import ( ) +@interfaces.register(interfaces.CipherAlgorithm) +class DummyCipher(object): + pass + + class TestCipher(object): def test_instantiate_without_backend(self): Cipher( @@ -45,6 +50,11 @@ class TestCipher(object): ) assert isinstance(cipher.decryptor(), interfaces.CipherContext) + def test_instantiate_with_non_algorithm(self): + algorithm = object() + with pytest.raises(TypeError): + Cipher(algorithm, mode=None) + class TestCipherContext(object): def test_use_after_finalize(self, backend): @@ -90,7 +100,7 @@ class TestCipherContext(object): def test_nonexistent_cipher(self, backend): cipher = Cipher( - object(), object(), backend + DummyCipher(), object(), backend ) with pytest.raises(UnsupportedAlgorithm): cipher.encryptor() |