aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives
diff options
context:
space:
mode:
authorAlex Stapleton <alexs@prol.etari.at>2014-05-27 12:33:30 +0100
committerAlex Stapleton <alexs@prol.etari.at>2014-05-27 12:33:30 +0100
commitfd3572923816d3bf89b5a57671ce21ee9959f222 (patch)
treeea22588cb5eed062c9868888d80344613af4732c /tests/hazmat/primitives
parent0323a0e474b3606b0d2f68f0cb24bc69be35eeb4 (diff)
parent1b760f1fed81f90506f776b70d2a0eb129ff27b7 (diff)
downloadcryptography-fd3572923816d3bf89b5a57671ce21ee9959f222.tar.gz
cryptography-fd3572923816d3bf89b5a57671ce21ee9959f222.tar.bz2
cryptography-fd3572923816d3bf89b5a57671ce21ee9959f222.zip
Merge pull request #1080 from reaperhulk/generate-rsa-parameters
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 fcb72e00..ea72f916 100644
--- a/tests/hazmat/primitives/test_rsa.py
+++ b/tests/hazmat/primitives/test_rsa.py
@@ -99,7 +99,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,