aboutsummaryrefslogtreecommitdiffstats
path: root/src/_cffi_src/openssl/cryptography.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2019-11-10 19:16:56 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2019-11-11 08:16:56 +0800
commit1a73704b8cf432fb74fc9f52ed4a0ac6637e078f (patch)
tree0b2036c46ba8b368f44f349e2485e413021736d6 /src/_cffi_src/openssl/cryptography.py
parent251321301546a8683099a42381e56d6230eda3a4 (diff)
downloadcryptography-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/cryptography.py')
-rw-r--r--src/_cffi_src/openssl/cryptography.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/_cffi_src/openssl/cryptography.py b/src/_cffi_src/openssl/cryptography.py
index ac32fdff..ddcbf2bd 100644
--- a/src/_cffi_src/openssl/cryptography.py
+++ b/src/_cffi_src/openssl/cryptography.py
@@ -34,14 +34,11 @@ INCLUDES = """
#endif
#if CRYPTOGRAPHY_IS_LIBRESSL
-#define CRYPTOGRAPHY_LIBRESSL_27_OR_GREATER \
- (LIBRESSL_VERSION_NUMBER >= 0x2070000f)
#define CRYPTOGRAPHY_LIBRESSL_28_OR_GREATER \
(LIBRESSL_VERSION_NUMBER >= 0x2080000f)
#define CRYPTOGRAPHY_LIBRESSL_291_OR_GREATER \
(LIBRESSL_VERSION_NUMBER >= 0x2090100f)
#else
-#define CRYPTOGRAPHY_LIBRESSL_27_OR_GREATER (0)
#define CRYPTOGRAPHY_LIBRESSL_28_OR_GREATER (0)
#define CRYPTOGRAPHY_LIBRESSL_291_OR_GREATER (0)
#endif