diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-06-07 12:52:37 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-06-07 12:52:37 -0700 |
commit | a8b4ba046955fdae271c8fe57fb92c53f99096cb (patch) | |
tree | 19a71c8fc3a26ec16ca06e37b1ca3412a8000c54 | |
parent | 2f7e2e4684c819f4ba536a8838ed20306e66759f (diff) | |
download | cryptography-a8b4ba046955fdae271c8fe57fb92c53f99096cb.tar.gz cryptography-a8b4ba046955fdae271c8fe57fb92c53f99096cb.tar.bz2 cryptography-a8b4ba046955fdae271c8fe57fb92c53f99096cb.zip |
Another small cleanup
-rw-r--r-- | cryptography/hazmat/backends/openssl/backend.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/backends/openssl/backend.py b/cryptography/hazmat/backends/openssl/backend.py index 7746dafb..ab3f9471 100644 --- a/cryptography/hazmat/backends/openssl/backend.py +++ b/cryptography/hazmat/backends/openssl/backend.py @@ -905,7 +905,7 @@ class Backend(object): return False # We only support ECDSA right now. - if isinstance(signature_algorithm, ec.ECDSA) is False: + if not isinstance(signature_algorithm, ec.ECDSA): return False # Before 0.9.8m OpenSSL can't cope with digests longer than the curve. |