diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-09-24 22:37:22 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-09-26 16:02:37 -0500 |
commit | c5e43429c26dd1b1baddeec9fddf3cb5d98bcfc1 (patch) | |
tree | 8004a1a24f6f045a37a8bbbf4f290a3f0674515f | |
parent | 84fc4e01afaae95d5a92703b045a37183be27988 (diff) | |
download | cryptography-c5e43429c26dd1b1baddeec9fddf3cb5d98bcfc1.tar.gz cryptography-c5e43429c26dd1b1baddeec9fddf3cb5d98bcfc1.tar.bz2 cryptography-c5e43429c26dd1b1baddeec9fddf3cb5d98bcfc1.zip |
learn to pep8
-rw-r--r-- | tests/hazmat/backends/test_openssl.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py index d2620060..110bbdba 100644 --- a/tests/hazmat/backends/test_openssl.py +++ b/tests/hazmat/backends/test_openssl.py @@ -510,6 +510,7 @@ class TestOpenSSLEllipticCurve(object): with raises_unsupported_algorithm(_Reasons.UNSUPPORTED_ELLIPTIC_CURVE): backend._sn_to_elliptic_curve(b"fake") + class TestDeprecatedRSABackendMethods(object): def test_create_rsa_signature_ctx(self): private_key = rsa.RSAPrivateKey.generate(65537, 512, backend) |