diff options
author | Donald Stufft <donald@stufft.io> | 2013-08-10 16:01:56 -0400 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2013-08-10 16:01:56 -0400 |
commit | ad89af11b234524e543284d3095a15905518ad70 (patch) | |
tree | 85634a84d21455faa897f5f4f6cbd62e4209a2e8 /tests/primitives/test_ciphers.py | |
parent | e9d8a777f2db59b11f745eb38d44f7257b40f5ab (diff) | |
download | cryptography-ad89af11b234524e543284d3095a15905518ad70.tar.gz cryptography-ad89af11b234524e543284d3095a15905518ad70.tar.bz2 cryptography-ad89af11b234524e543284d3095a15905518ad70.zip |
Ensure that AES gets a proper key size
Diffstat (limited to 'tests/primitives/test_ciphers.py')
-rw-r--r-- | tests/primitives/test_ciphers.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/primitives/test_ciphers.py b/tests/primitives/test_ciphers.py index 31b4275e..891c5cf8 100644 --- a/tests/primitives/test_ciphers.py +++ b/tests/primitives/test_ciphers.py @@ -27,3 +27,7 @@ class TestAES(object): def test_key_size(self, key, keysize): cipher = AES(binascii.unhexlify(key)) assert cipher.key_size == keysize + + def test_invalid_key_size(self): + with pytest.raises(ValueError): + AES(binascii.unhexlify(b"0" * 12)) |