aboutsummaryrefslogtreecommitdiffstats
path: root/src/_cffi_src
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2016-03-09 11:35:27 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2016-03-09 11:35:27 -0500
commit0681de7241dcbaec7b3dc85d3cf3944e4bec8309 (patch)
tree605b7b627ec87ff9280072661e15ee96580868c1 /src/_cffi_src
parent36e2d04b56534bfef4c8dfab0134767661a6daa2 (diff)
parentea5ac0dac0e9791cce9a6a949425d978089f6cd7 (diff)
downloadcryptography-0681de7241dcbaec7b3dc85d3cf3944e4bec8309.tar.gz
cryptography-0681de7241dcbaec7b3dc85d3cf3944e4bec8309.tar.bz2
cryptography-0681de7241dcbaec7b3dc85d3cf3944e4bec8309.zip
Merge pull request #2786 from reaperhulk/110-patch-7
DH_generate_parameters was deprecated in 0.9.8 and we don't use it
Diffstat (limited to 'src/_cffi_src')
-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 *);