diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-03-09 11:33:52 -0400 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2016-03-09 11:33:52 -0400 |
commit | 1124b068de0b499b7af5632d32fbc14afe09442c (patch) | |
tree | 1967c2ac75191c88e1815fe87da3066b34456014 /src/_cffi_src/openssl | |
parent | 7a2bc40a6be4f714b882c4c5f0a174422e028bac (diff) | |
download | cryptography-1124b068de0b499b7af5632d32fbc14afe09442c.tar.gz cryptography-1124b068de0b499b7af5632d32fbc14afe09442c.tar.bz2 cryptography-1124b068de0b499b7af5632d32fbc14afe09442c.zip |
some ECDH functions we don't use that are no longer present in 1.1.0
Diffstat (limited to 'src/_cffi_src/openssl')
-rw-r--r-- | src/_cffi_src/openssl/ecdh.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/_cffi_src/openssl/ecdh.py b/src/_cffi_src/openssl/ecdh.py index 3116c3b6..099f53cb 100644 --- a/src/_cffi_src/openssl/ecdh.py +++ b/src/_cffi_src/openssl/ecdh.py @@ -20,13 +20,6 @@ FUNCTIONS = """ MACROS = """ int ECDH_compute_key(void *, size_t, const EC_POINT *, EC_KEY *, void *(*)(const void *, size_t, void *, size_t *)); - -int ECDH_get_ex_new_index(long, void *, CRYPTO_EX_new *, CRYPTO_EX_dup *, - CRYPTO_EX_free *); - -int ECDH_set_ex_data(EC_KEY *, int, void *); - -void *ECDH_get_ex_data(EC_KEY *, int); """ CUSTOMIZATIONS = """ @@ -37,13 +30,6 @@ int (*ECDH_compute_key)(void *, size_t, const EC_POINT *, EC_KEY *, void *(*)(const void *, size_t, void *, size_t *)) = NULL; -int (*ECDH_get_ex_new_index)(long, void *, CRYPTO_EX_new *, CRYPTO_EX_dup *, - CRYPTO_EX_free *) = NULL; - -int (*ECDH_set_ex_data)(EC_KEY *, int, void *) = NULL; - -void *(*ECDH_get_ex_data)(EC_KEY *, int) = NULL; - #else static const long Cryptography_HAS_ECDH = 1; #endif |