aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat
diff options
context:
space:
mode:
authorHynek Schlawack <hs@ox.cx>2013-11-09 07:13:52 -0800
committerHynek Schlawack <hs@ox.cx>2013-11-09 07:13:52 -0800
commitdf52fa9d388c2fc7d721c0fba5ca21ec88a01a15 (patch)
treef44dda3b7c2d612dc8dfbcf1a63edb411e466b98 /tests/hazmat
parent323faa72138f2e9c5249d9a42e7f42d741aec873 (diff)
parent715e85f3f39a2b8f50ae810ba86d64af30e13c56 (diff)
downloadcryptography-df52fa9d388c2fc7d721c0fba5ca21ec88a01a15.tar.gz
cryptography-df52fa9d388c2fc7d721c0fba5ca21ec88a01a15.tar.bz2
cryptography-df52fa9d388c2fc7d721c0fba5ca21ec88a01a15.zip
Merge pull request #238 from alex/padding-only-fixes
Fixed two bugs in the PKCS7 padding where unpadding would accept bad inputs
Diffstat (limited to 'tests/hazmat')
-rw-r--r--tests/hazmat/primitives/test_padding.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/hazmat/primitives/test_padding.py b/tests/hazmat/primitives/test_padding.py
index 3cefafaf..6a2b6243 100644
--- a/tests/hazmat/primitives/test_padding.py
+++ b/tests/hazmat/primitives/test_padding.py
@@ -29,6 +29,8 @@ class TestPKCS7(object):
(128, b"1111111111111111"),
(128, b"111111111111111\x06"),
(128, b""),
+ (128, b"\x06" * 6),
+ (128, b"\x00" * 16),
])
def test_invalid_padding(self, size, padded):
unpadder = padding.PKCS7(size).unpadder()