diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-17 21:06:45 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-17 21:06:45 -0600 |
commit | 189bdc397c1c782d6ab1e462df719b943742438c (patch) | |
tree | 56a14e0e02ee3b0ae786313a14a8aa083823c443 | |
parent | 19ddc8d4122c3b3ef00d9ba8401b7cc2e55fc309 (diff) | |
download | cryptography-189bdc397c1c782d6ab1e462df719b943742438c.tar.gz cryptography-189bdc397c1c782d6ab1e462df719b943742438c.tar.bz2 cryptography-189bdc397c1c782d6ab1e462df719b943742438c.zip |
fix style, move a comment
-rw-r--r-- | cryptography/hazmat/bindings/openssl/rsa.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cryptography/hazmat/bindings/openssl/rsa.py b/cryptography/hazmat/bindings/openssl/rsa.py index 0644efa6..359305c6 100644 --- a/cryptography/hazmat/bindings/openssl/rsa.py +++ b/cryptography/hazmat/bindings/openssl/rsa.py @@ -74,9 +74,9 @@ int EVP_PKEY_CTX_set_rsa_pss_saltlen(EVP_PKEY_CTX *, int); CUSTOMIZATIONS = """ #if OPENSSL_VERSION_NUMBER >= 0x10000000 -// see evp.py for the definition of Cryptography_HAS_PKEY_CTX static const long Cryptography_HAS_PSS_PADDING = 1; -# else +#else +// see evp.py for the definition of Cryptography_HAS_PKEY_CTX static const long Cryptography_HAS_PSS_PADDING = 0; int (*EVP_PKEY_CTX_set_rsa_padding)(EVP_PKEY_CTX *, int) = NULL; int (*EVP_PKEY_CTX_set_rsa_pss_saltlen)(EVP_PKEY_CTX *, int) = NULL; |