aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-10-19 14:26:21 -0700
committerAlex Gaynor <alex.gaynor@gmail.com>2013-10-19 14:26:21 -0700
commit107b74ed7f973f104ede1c30ac6d3e020792afe0 (patch)
tree407d8a29f9488f0b22077e4522441151b096f04d /tests
parente16bdfda6b2eadec0bde399f408a179379c31d9d (diff)
parentc3a2b4270fbf9aba44afd04088866f2a3da21af7 (diff)
downloadcryptography-107b74ed7f973f104ede1c30ac6d3e020792afe0.tar.gz
cryptography-107b74ed7f973f104ede1c30ac6d3e020792afe0.tar.bz2
cryptography-107b74ed7f973f104ede1c30ac6d3e020792afe0.zip
Merge pull request #141 from reaperhulk/block-cipher-buffer-sizing
Fix Block cipher buffer sizing
Diffstat (limited to 'tests')
-rw-r--r--tests/primitives/test_block.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/primitives/test_block.py b/tests/primitives/test_block.py
index f4d3f467..9f5905bf 100644
--- a/tests/primitives/test_block.py
+++ b/tests/primitives/test_block.py
@@ -63,3 +63,14 @@ class TestBlockCipher(object):
with pytest.raises(ValueError):
cipher.finalize()
+
+ def test_unaligned_block_encryption(self, api):
+ cipher = BlockCipher(
+ ciphers.AES(binascii.unhexlify(b"0" * 32)),
+ modes.ECB(),
+ api
+ )
+ ct = cipher.encrypt(b"a" * 15)
+ assert ct == b""
+ ct += cipher.encrypt(b"a" * 65)
+ assert len(ct) == 80