aboutsummaryrefslogtreecommitdiffstats
path: root/src/_cffi_src/openssl/dh.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2016-03-09 10:48:40 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2016-03-09 11:16:53 -0400
commitea5ac0dac0e9791cce9a6a949425d978089f6cd7 (patch)
treee79f2ca6d3c2a2d998b1e77e31d504ff14696c62 /src/_cffi_src/openssl/dh.py
parent7a2bc40a6be4f714b882c4c5f0a174422e028bac (diff)
downloadcryptography-ea5ac0dac0e9791cce9a6a949425d978089f6cd7.tar.gz
cryptography-ea5ac0dac0e9791cce9a6a949425d978089f6cd7.tar.bz2
cryptography-ea5ac0dac0e9791cce9a6a949425d978089f6cd7.zip
DH_generate_parameters was deprecated in 0.9.8 and we don't use it
Diffstat (limited to 'src/_cffi_src/openssl/dh.py')
-rw-r--r--src/_cffi_src/openssl/dh.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/_cffi_src/openssl/dh.py b/src/_cffi_src/openssl/dh.py
index 8df66f8b..8055d0c8 100644
--- a/src/_cffi_src/openssl/dh.py
+++ b/src/_cffi_src/openssl/dh.py
@@ -29,7 +29,6 @@ FUNCTIONS = """
DH *DH_new(void);
void DH_free(DH *);
int DH_size(const DH *);
-DH *DH_generate_parameters(int, int, void (*)(int, int, void *), void *);
int DH_check(const DH *, int *);
int DH_check_pub_key(const DH *, const BIGNUM *, int *);
int DH_generate_key(DH *);