aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_rsa.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-08-12 17:13:31 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-08-12 17:13:31 -0500
commit56b1a88b6565f2239c717bb3c8514f84f55ee855 (patch)
treedf7c703853e8d1918d467156153edc27bccaef74 /tests/hazmat/primitives/test_rsa.py
parentf15a0a096289688f13c193633811c4aef0974e2f (diff)
parent38df44151cdc6591385c4ec1691e782d05c8aec7 (diff)
downloadcryptography-56b1a88b6565f2239c717bb3c8514f84f55ee855.tar.gz
cryptography-56b1a88b6565f2239c717bb3c8514f84f55ee855.tar.bz2
cryptography-56b1a88b6565f2239c717bb3c8514f84f55ee855.zip
Merge pull request #2262 from viraptor/non-bytes-signatures
Ensure early exeption on non-bytes signature
Diffstat (limited to 'tests/hazmat/primitives/test_rsa.py')
-rw-r--r--tests/hazmat/primitives/test_rsa.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py
index 0c5f7042..0b83fd65 100644
--- a/tests/hazmat/primitives/test_rsa.py
+++ b/tests/hazmat/primitives/test_rsa.py
@@ -679,6 +679,23 @@ class TestRSAVerification(object):
with raises_unsupported_algorithm(_Reasons.UNSUPPORTED_PADDING):
public_key.verifier(b"sig", DummyPadding(), hashes.SHA1())
+ @pytest.mark.supported(
+ only_if=lambda backend: backend.rsa_padding_supported(
+ padding.PKCS1v15()
+ ),
+ skip_message="Does not support PKCS1v1.5."
+ )
+ def test_signature_not_bytes(self, backend):
+ public_key = RSA_KEY_512.public_numbers.public_key(backend)
+ signature = 1234
+
+ with pytest.raises(TypeError):
+ public_key.verifier(
+ signature,
+ padding.PKCS1v15(),
+ hashes.SHA1()
+ )
+
def test_padding_incorrect_type(self, backend):
private_key = RSA_KEY_512.private_key(backend)
public_key = private_key.public_key()