diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-31 21:10:20 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-10-31 21:10:20 -0700 |
commit | c94cdbca7f48095ddbaf15612c7b119b3ca26f73 (patch) | |
tree | 24bb6898fca61e4b19065421399ffa589f17b617 /tests/hazmat/primitives/test_ciphers.py | |
parent | 3b243187f9ca6bec2bea125cf69dc2ddbbc7285f (diff) | |
parent | e833eac23008bc7bcb4db981f7fcc3d508d0381e (diff) | |
download | cryptography-c94cdbca7f48095ddbaf15612c7b119b3ca26f73.tar.gz cryptography-c94cdbca7f48095ddbaf15612c7b119b3ca26f73.tar.bz2 cryptography-c94cdbca7f48095ddbaf15612c7b119b3ca26f73.zip |
Merge pull request #202 from reaperhulk/cast128-cipher
CAST5 Support
Diffstat (limited to 'tests/hazmat/primitives/test_ciphers.py')
-rw-r--r-- | tests/hazmat/primitives/test_ciphers.py | 15 |
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)) |