diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2019-02-26 21:28:45 +0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2019-02-26 08:28:45 -0500 |
commit | 177ba1cca189f7065f1577deee04f0ba503be5c3 (patch) | |
tree | 2630a139be74d77cb6d805c678a547fe702abe5f /src/_cffi_src/openssl | |
parent | 50cd8009d8e5fda8d771f41ecd60ca08f3fc84cc (diff) | |
download | cryptography-177ba1cca189f7065f1577deee04f0ba503be5c3.tar.gz cryptography-177ba1cca189f7065f1577deee04f0ba503be5c3.tar.bz2 cryptography-177ba1cca189f7065f1577deee04f0ba503be5c3.zip |
remove unused DH bindings (#4779)
Diffstat (limited to 'src/_cffi_src/openssl')
-rw-r--r-- | src/_cffi_src/openssl/dh.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/_cffi_src/openssl/dh.py b/src/_cffi_src/openssl/dh.py index b0fd21f5..6fdc7dd6 100644 --- a/src/_cffi_src/openssl/dh.py +++ b/src/_cffi_src/openssl/dh.py @@ -18,15 +18,8 @@ FUNCTIONS = """ DH *DH_new(void); void DH_free(DH *); int DH_size(const DH *); -int DH_check_pub_key(const DH *, const BIGNUM *, int *); int DH_generate_key(DH *); int DH_compute_key(unsigned char *, const BIGNUM *, DH *); -int DH_set_ex_data(DH *, int, void *); -void *DH_get_ex_data(DH *, int); -DH *d2i_DHparams(DH **, const unsigned char **, long); -int i2d_DHparams(const DH *, unsigned char **); -int DHparams_print_fp(FILE *, const DH *); -int DHparams_print(BIO *, const DH *); DH *DHparams_dup(DH *); /* added in 1.1.0 when the DH struct was opaqued */ |