diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2019-11-10 19:16:56 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2019-11-11 08:16:56 +0800 |
commit | 1a73704b8cf432fb74fc9f52ed4a0ac6637e078f (patch) | |
tree | 0b2036c46ba8b368f44f349e2485e413021736d6 /src/_cffi_src/openssl/dh.py | |
parent | 251321301546a8683099a42381e56d6230eda3a4 (diff) | |
download | cryptography-1a73704b8cf432fb74fc9f52ed4a0ac6637e078f.tar.gz cryptography-1a73704b8cf432fb74fc9f52ed4a0ac6637e078f.tar.bz2 cryptography-1a73704b8cf432fb74fc9f52ed4a0ac6637e078f.zip |
Fixed #5050 -- dropped support for an old LibresSSL release (#5056)
* Fixed #5050 -- dropped support for an old LibresSSL release
* Changelog
Diffstat (limited to 'src/_cffi_src/openssl/dh.py')
-rw-r--r-- | src/_cffi_src/openssl/dh.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/_cffi_src/openssl/dh.py b/src/_cffi_src/openssl/dh.py index 6fdc7dd6..0e1df23a 100644 --- a/src/_cffi_src/openssl/dh.py +++ b/src/_cffi_src/openssl/dh.py @@ -39,7 +39,7 @@ int Cryptography_i2d_DHxparams_bio(BIO *bp, DH *x); CUSTOMIZATIONS = """ /* These functions were added in OpenSSL 1.1.0 */ -#if CRYPTOGRAPHY_OPENSSL_LESS_THAN_110 && !CRYPTOGRAPHY_LIBRESSL_27_OR_GREATER +#if CRYPTOGRAPHY_OPENSSL_LESS_THAN_110 && !CRYPTOGRAPHY_IS_LIBRESSL void DH_get0_pqg(const DH *dh, const BIGNUM **p, const BIGNUM **q, const BIGNUM **g) { |