aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2019-02-26 01:29:52 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2019-02-26 14:29:52 +0800
commitfeefd33dd9194c24b4b7ef0a9d63daf53aa85a91 (patch)
treeb4e343ba4aefce856947547de7fd6e041cdb369b /src
parentfbf3b9a15ac87dce14de37bea21d321284a064e7 (diff)
downloadcryptography-feefd33dd9194c24b4b7ef0a9d63daf53aa85a91.tar.gz
cryptography-feefd33dd9194c24b4b7ef0a9d63daf53aa85a91.tar.bz2
cryptography-feefd33dd9194c24b4b7ef0a9d63daf53aa85a91.zip
Remove unused constant binding from ecdh.py (#4774)
Diffstat (limited to 'src')
-rw-r--r--src/_cffi_src/openssl/ecdh.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/_cffi_src/openssl/ecdh.py b/src/_cffi_src/openssl/ecdh.py
index 043635c4..5db12571 100644
--- a/src/_cffi_src/openssl/ecdh.py
+++ b/src/_cffi_src/openssl/ecdh.py
@@ -9,7 +9,6 @@ INCLUDES = """
"""
TYPES = """
-static const int Cryptography_HAS_ECDH;
static const int Cryptography_HAS_SET_ECDH_AUTO;
"""
@@ -20,8 +19,6 @@ long SSL_CTX_set_ecdh_auto(SSL_CTX *, int);
"""
CUSTOMIZATIONS = """
-static const long Cryptography_HAS_ECDH = 1;
-
#ifndef SSL_CTX_set_ecdh_auto
static const long Cryptography_HAS_SET_ECDH_AUTO = 0;
long (*SSL_CTX_set_ecdh_auto)(SSL_CTX *, int) = NULL;