diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-12-27 23:55:39 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-12-27 23:55:39 -0600 |
commit | c809360573fc2ef659c154740c32e98f35fc5da9 (patch) | |
tree | 82a4420511ddab15d1667cb8095266b5bdeb4920 /src/_cffi_src/openssl | |
parent | 7721785f388fbbfa3072e600931eefbf019442b7 (diff) | |
download | cryptography-c809360573fc2ef659c154740c32e98f35fc5da9.tar.gz cryptography-c809360573fc2ef659c154740c32e98f35fc5da9.tar.bz2 cryptography-c809360573fc2ef659c154740c32e98f35fc5da9.zip |
RSA_R_OAEP_DECODING_ERROR is pretty ubiquitous
Diffstat (limited to 'src/_cffi_src/openssl')
-rw-r--r-- | src/_cffi_src/openssl/err.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/_cffi_src/openssl/err.py b/src/_cffi_src/openssl/err.py index 3eb783ee..9d97be16 100644 --- a/src/_cffi_src/openssl/err.py +++ b/src/_cffi_src/openssl/err.py @@ -14,7 +14,6 @@ static const int Cryptography_HAS_098H_ERROR_CODES; static const int Cryptography_HAS_098C_CAMELLIA_CODES; static const int Cryptography_HAS_EC_CODES; static const int Cryptography_HAS_RSA_R_PKCS_DECODING_ERROR; -static const int Cryptography_HAS_RSA_R_OAEP_DECODING_ERROR; struct ERR_string_data_st { unsigned long error; @@ -336,11 +335,4 @@ static const long Cryptography_HAS_RSA_R_PKCS_DECODING_ERROR = 1; static const long Cryptography_HAS_RSA_R_PKCS_DECODING_ERROR = 0; static const long RSA_R_PKCS_DECODING_ERROR = 0; #endif - -#ifdef RSA_R_OAEP_DECODING_ERROR -static const long Cryptography_HAS_RSA_R_OAEP_DECODING_ERROR = 1; -#else -static const long Cryptography_HAS_RSA_R_OAEP_DECODING_ERROR = 0; -static const long RSA_R_OAEP_DECODING_ERROR = 0; -#endif """ |