diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2019-02-26 00:48:41 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2019-02-26 13:48:41 +0800 |
commit | fbf3b9a15ac87dce14de37bea21d321284a064e7 (patch) | |
tree | 124c3dc37076cb4e3226fa37a69ecb111ced3cd1 | |
parent | 75a7a36abb4165ff33482a1f22be5da0b83b63df (diff) | |
download | cryptography-fbf3b9a15ac87dce14de37bea21d321284a064e7.tar.gz cryptography-fbf3b9a15ac87dce14de37bea21d321284a064e7.tar.bz2 cryptography-fbf3b9a15ac87dce14de37bea21d321284a064e7.zip |
Remove unused constant from ec.py bindings (#4773)
-rw-r--r-- | src/_cffi_src/openssl/ec.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/_cffi_src/openssl/ec.py b/src/_cffi_src/openssl/ec.py index 66bcadc2..258afa21 100644 --- a/src/_cffi_src/openssl/ec.py +++ b/src/_cffi_src/openssl/ec.py @@ -10,7 +10,6 @@ INCLUDES = """ """ TYPES = """ -static const int Cryptography_HAS_EC; static const int Cryptography_HAS_EC2M; static const int Cryptography_HAS_EC_1_0_2; @@ -109,8 +108,6 @@ const char *EC_curve_nid2nist(int); """ CUSTOMIZATIONS = """ -static const long Cryptography_HAS_EC = 1; - #if defined(OPENSSL_NO_EC2M) static const long Cryptography_HAS_EC2M = 0; |