diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-01 10:12:53 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-04-01 10:12:53 -0500 |
commit | 550f1739d88e8a40a905797544af21dd83bec477 (patch) | |
tree | eef1cab9a29231664c8c2aa189792bc8ee3dd703 /tests/hazmat/primitives/test_rsa.py | |
parent | 476682af2d4a9438026e69b6c1f3500c19f2f200 (diff) | |
parent | df16f4a573d0d9a81236818c79032f4c12ffec00 (diff) | |
download | cryptography-550f1739d88e8a40a905797544af21dd83bec477.tar.gz cryptography-550f1739d88e8a40a905797544af21dd83bec477.tar.bz2 cryptography-550f1739d88e8a40a905797544af21dd83bec477.zip |
Merge pull request #876 from public/unsupported-algorithm-asym-tags
Extra UnsupportedAlgorithm reason tags
Diffstat (limited to 'tests/hazmat/primitives/test_rsa.py')
-rw-r--r-- | tests/hazmat/primitives/test_rsa.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py index 5d94e790..c458a662 100644 --- a/tests/hazmat/primitives/test_rsa.py +++ b/tests/hazmat/primitives/test_rsa.py @@ -22,7 +22,7 @@ import os import pytest from cryptography import exceptions, utils -from cryptography.exceptions import UnsupportedAlgorithm, _Reasons +from cryptography.exceptions import _Reasons from cryptography.hazmat.primitives import hashes, interfaces from cryptography.hazmat.primitives.asymmetric import padding, rsa @@ -630,7 +630,7 @@ class TestRSASignature(object): key_size=512, backend=backend ) - with pytest.raises(UnsupportedAlgorithm): + with raises_unsupported_algorithm(_Reasons.UNSUPPORTED_MGF): private_key.signer(padding.PSS(mgf=DummyMGF()), hashes.SHA1(), backend) @@ -881,7 +881,7 @@ class TestRSAVerification(object): backend=backend ) public_key = private_key.public_key() - with pytest.raises(UnsupportedAlgorithm): + with raises_unsupported_algorithm(_Reasons.UNSUPPORTED_MGF): public_key.verifier(b"sig", padding.PSS(mgf=DummyMGF()), hashes.SHA1(), backend) |