diff options
author | Donald Stufft <donald@stufft.io> | 2015-08-04 09:05:53 -0400 |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2015-08-04 09:05:53 -0400 |
commit | eca59b7064be4c2e0b7f8255431060e271a7f67d (patch) | |
tree | c2ccd6c0a8508432b05f1a314f15f85fde249180 /src/_cffi_src/openssl/err.py | |
parent | 2d135b759139ef470b753a4c92ec0aa93f6cdff4 (diff) | |
parent | a30f8b29973761452acff6488007774895595983 (diff) | |
download | cryptography-eca59b7064be4c2e0b7f8255431060e271a7f67d.tar.gz cryptography-eca59b7064be4c2e0b7f8255431060e271a7f67d.tar.bz2 cryptography-eca59b7064be4c2e0b7f8255431060e271a7f67d.zip |
Merge pull request #2180 from reaperhulk/easy-conditional-fix
create a ConditionalLibrary and remove unsupported items
Diffstat (limited to 'src/_cffi_src/openssl/err.py')
-rw-r--r-- | src/_cffi_src/openssl/err.py | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/_cffi_src/openssl/err.py b/src/_cffi_src/openssl/err.py index 73ce4e3c..6ec13775 100644 --- a/src/_cffi_src/openssl/err.py +++ b/src/_cffi_src/openssl/err.py @@ -335,29 +335,3 @@ static const long Cryptography_HAS_RSA_R_PKCS_DECODING_ERROR = 0; static const long RSA_R_PKCS_DECODING_ERROR = 0; #endif """ - -CONDITIONAL_NAMES = { - "Cryptography_HAS_REMOVE_THREAD_STATE": [ - "ERR_remove_thread_state" - ], - "Cryptography_HAS_098H_ERROR_CODES": [ - "ASN1_F_B64_READ_ASN1", - "ASN1_F_B64_WRITE_ASN1", - "ASN1_F_SMIME_READ_ASN1", - "ASN1_F_SMIME_TEXT", - "ASN1_R_NO_CONTENT_TYPE", - "ASN1_R_NO_MULTIPART_BODY_FAILURE", - "ASN1_R_NO_MULTIPART_BOUNDARY", - ], - "Cryptography_HAS_098C_CAMELLIA_CODES": [ - "EVP_F_CAMELLIA_INIT_KEY", - "EVP_R_CAMELLIA_KEY_SETUP_FAILED" - ], - "Cryptography_HAS_EC_CODES": [ - "EC_R_UNKNOWN_GROUP", - "EC_F_EC_GROUP_NEW_BY_CURVE_NAME" - ], - "Cryptography_HAS_RSA_R_PKCS_DECODING_ERROR": [ - "RSA_R_PKCS_DECODING_ERROR" - ] -} |