aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_ciphers.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-30 16:47:06 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2013-10-31 18:07:03 -0500
commitb47f6e1a9f8389224b80b5c3489bafa9e0b57273 (patch)
tree3a5e5cb17829b3f2b540c5239257c775fa2402f2 /tests/hazmat/primitives/test_ciphers.py
parent0419e5ef5f8b4f068cc30e006c55158de914c366 (diff)
downloadcryptography-b47f6e1a9f8389224b80b5c3489bafa9e0b57273.tar.gz
cryptography-b47f6e1a9f8389224b80b5c3489bafa9e0b57273.tar.bz2
cryptography-b47f6e1a9f8389224b80b5c3489bafa9e0b57273.zip
CAST5 support + ECB vectors
Diffstat (limited to 'tests/hazmat/primitives/test_ciphers.py')
-rw-r--r--tests/hazmat/primitives/test_ciphers.py15
1 files changed, 14 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_ciphers.py b/tests/hazmat/primitives/test_ciphers.py
index 2a20eb7a..d3870a0b 100644
--- a/tests/hazmat/primitives/test_ciphers.py
+++ b/tests/hazmat/primitives/test_ciphers.py
@@ -18,7 +18,7 @@ import binascii
import pytest
from cryptography.hazmat.primitives.block.ciphers import (
- AES, Camellia, TripleDES, Blowfish
+ AES, Camellia, TripleDES, Blowfish, CAST5
)
@@ -78,3 +78,16 @@ class TestBlowfish(object):
def test_invalid_key_size(self):
with pytest.raises(ValueError):
Blowfish(binascii.unhexlify(b"0" * 6))
+
+
+class TestCAST5(object):
+ @pytest.mark.parametrize(("key", "keysize"), [
+ (b"0" * (keysize // 4), keysize) for keysize in range(40, 129, 8)
+ ])
+ def test_key_size(self, key, keysize):
+ cipher = CAST5(binascii.unhexlify(key))
+ assert cipher.key_size == keysize
+
+ def test_invalid_key_size(self):
+ with pytest.raises(ValueError):
+ CAST5(binascii.unhexlify(b"0" * 34))