aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-10-03 09:58:45 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-10-03 09:58:45 -0700
commit81a5287984cd31080f7a5a1b249caf626ac8f6bf (patch)
tree9ebbf38b4779b64effec121a6d562c543b613e8b /tests
parent548467c8d90a62d7e7647ae7b8d04cc6291d811e (diff)
downloadcryptography-81a5287984cd31080f7a5a1b249caf626ac8f6bf.tar.gz
cryptography-81a5287984cd31080f7a5a1b249caf626ac8f6bf.tar.bz2
cryptography-81a5287984cd31080f7a5a1b249caf626ac8f6bf.zip
Use a None default so composition is easier
Diffstat (limited to 'tests')
-rw-r--r--tests/primitives/test_block.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/primitives/test_block.py b/tests/primitives/test_block.py
index 92fd31a3..774885fa 100644
--- a/tests/primitives/test_block.py
+++ b/tests/primitives/test_block.py
@@ -31,6 +31,13 @@ class TestBlockCipher(object):
)
assert cipher.name == "AES-128-CBC"
+ def test_instantiate_without_api(self):
+ cipher = BlockCipher(
+ ciphers.AES(binascii.unhexlify(b"0" * 32)),
+ modes.CBC(binascii.unhexlify(b"0" * 32))
+ )
+ assert cipher.name == "AES-128-CBC"
+
def test_use_after_finalize(self, api):
cipher = BlockCipher(
ciphers.AES(binascii.unhexlify(b"0" * 32)),