diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-23 15:05:37 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-23 15:05:37 -0600 |
commit | a33df8ed655b507e72bdb4aab377dcf7a81954c5 (patch) | |
tree | c864bcaac8ce2f831c56e96ab091f2f59ec83b46 /tests | |
parent | da19e2b59957870fdb04e1027a9221b8fa2c810e (diff) | |
download | cryptography-a33df8ed655b507e72bdb4aab377dcf7a81954c5.tar.gz cryptography-a33df8ed655b507e72bdb4aab377dcf7a81954c5.tar.bz2 cryptography-a33df8ed655b507e72bdb4aab377dcf7a81954c5.zip |
fix pep8
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hazmat/primitives/test_rsa.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_rsa.py b/tests/hazmat/primitives/test_rsa.py index 11fb3729..8229b76b 100644 --- a/tests/hazmat/primitives/test_rsa.py +++ b/tests/hazmat/primitives/test_rsa.py @@ -398,7 +398,6 @@ class TestRSASignature(object): def test_pkcs1v15_signing(self, pkcs1_example, backend): private, public, example = pkcs1_example private_key = rsa.RSAPrivateKey(**private) - public_key = rsa.RSAPublicKey(**public) signer = private_key.signer(padding.PKCS1(), hashes.SHA1(), backend) signer.update(binascii.unhexlify(example["message"])) signature = signer.finalize() |