diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-24 21:21:08 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-24 21:21:08 -0600 |
commit | 49e4c9c4f72311070aa444d7c35cfc27453e4ad9 (patch) | |
tree | c08724a4c197979049636c8100eeb7c0e3c5b0f0 /tests | |
parent | bfba58bf535048d9b29fd2b7b6044695aa02a4c7 (diff) | |
download | cryptography-49e4c9c4f72311070aa444d7c35cfc27453e4ad9.tar.gz cryptography-49e4c9c4f72311070aa444d7c35cfc27453e4ad9.tar.bz2 cryptography-49e4c9c4f72311070aa444d7c35cfc27453e4ad9.zip |
more kwargs
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hazmat/primitives/test_rsa.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py index c66a1581..647c51b4 100644 --- a/tests/hazmat/primitives/test_rsa.py +++ b/tests/hazmat/primitives/test_rsa.py @@ -436,6 +436,10 @@ class TestRSASignature(object): private_key.signer(DummyPadding(), hashes.SHA1(), backend) def test_padding_incorrect_type(self, backend): - private_key = rsa.RSAPrivateKey.generate(65537, 512, backend) + private_key = rsa.RSAPrivateKey.generate( + public_exponent=65537, + key_size=512, + backend=backend + ) with pytest.raises(TypeError): private_key.signer("notpadding", hashes.SHA1(), backend) |