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/x509.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/x509.py')
-rw-r--r-- | src/_cffi_src/openssl/x509.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/_cffi_src/openssl/x509.py b/src/_cffi_src/openssl/x509.py index bdcc1719..468d74ea 100644 --- a/src/_cffi_src/openssl/x509.py +++ b/src/_cffi_src/openssl/x509.py @@ -348,18 +348,3 @@ EC_KEY *(*o2i_ECPublicKey)(EC_KEY **, const unsigned char **, long) = NULL; int (*i2o_ECPublicKey)(EC_KEY *, unsigned char **) = NULL; #endif """ - -CONDITIONAL_NAMES = { - "Cryptography_HAS_EC": [ - "i2d_EC_PUBKEY", - "d2i_EC_PUBKEY", - "d2i_EC_PUBKEY_bio", - "i2d_EC_PUBKEY_bio", - "d2i_ECPrivateKey", - "d2i_ECPrivateKey_bio", - "i2d_ECPrivateKey", - "i2d_ECPrivateKey_bio", - "i2o_ECPublicKey", - "o2i_ECPublicKey", - ] -} |