diff options
| author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-05-25 22:01:20 -0500 |
|---|---|---|
| committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-05-25 22:10:58 -0500 |
| commit | 342d2e4cd83519d80abb12de16b7d893769a7c32 (patch) | |
| tree | 2893a517b7b190e6725d26585a0fc35bdb256629 /tests/hazmat/primitives | |
| parent | bf308598c2a588f67963decb69f09a2f5b8b7070 (diff) | |
| download | cryptography-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.py | 2 |
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, |
