diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-08-25 11:36:19 -1000 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-08-25 11:36:19 -1000 |
commit | e9d027a99b7b945e4254e2ddd407c34d500cd22d (patch) | |
tree | 84eb6c0d361dd9ed61945074a3dc171e21a9266a /tests | |
parent | dda54aa7b1f40601fd4dc58f6c4d1e21c192edbd (diff) | |
parent | 35bb89a4dbd0b9b5795ac1938db09ca42887b715 (diff) | |
download | cryptography-e9d027a99b7b945e4254e2ddd407c34d500cd22d.tar.gz cryptography-e9d027a99b7b945e4254e2ddd407c34d500cd22d.tar.bz2 cryptography-e9d027a99b7b945e4254e2ddd407c34d500cd22d.zip |
Merge pull request #1321 from alex/check-padding
Verify that padding is an instance of AsymmetircPadding before trying to use it; fixes #1318
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hazmat/primitives/test_rsa.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py index e53ff06b..88b30d61 100644 --- a/tests/hazmat/primitives/test_rsa.py +++ b/tests/hazmat/primitives/test_rsa.py @@ -1616,6 +1616,8 @@ class TestRSAEncryption(object): with raises_unsupported_algorithm(_Reasons.UNSUPPORTED_PADDING): public_key.encrypt(b"somedata", DummyPadding()) + with pytest.raises(TypeError): + public_key.encrypt(b"somedata", padding=object()) def test_unsupported_oaep_mgf(self, backend): private_key = RSA_KEY_512.private_key(backend) |