aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-05-25 22:01:20 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-05-25 22:10:58 -0500
commit342d2e4cd83519d80abb12de16b7d893769a7c32 (patch)
tree2893a517b7b190e6725d26585a0fc35bdb256629 /tests/hazmat/primitives
parentbf308598c2a588f67963decb69f09a2f5b8b7070 (diff)
downloadcryptography-342d2e4cd83519d80abb12de16b7d893769a7c32.tar.gz
cryptography-342d2e4cd83519d80abb12de16b7d893769a7c32.tar.bz2
cryptography-342d2e4cd83519d80abb12de16b7d893769a7c32.zip
add generate_rsa_parameters_supported to RSABackend
Diffstat (limited to 'tests/hazmat/primitives')
-rw-r--r--tests/hazmat/primitives/test_rsa.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py
index 4d5292e5..47e572c5 100644
--- a/tests/hazmat/primitives/test_rsa.py
+++ b/tests/hazmat/primitives/test_rsa.py
@@ -93,7 +93,7 @@ class TestRSA(object):
assert skey.key_size == key_size
assert skey.public_exponent == public_exponent
- def test_generate_bad_rsa_key(self, backend):
+ def test_generate_bad_public_exponent(self, backend):
with pytest.raises(ValueError):
rsa.RSAPrivateKey.generate(public_exponent=1,
key_size=2048,