|
From 98bf3eda9c950158cf6a0a6a698dd365712201b1 Mon Sep 17 00:00:00 2001
|
|
From: Rosen Penev <rosenp@gmail.com>
|
|
Date: Mon, 25 Nov 2019 12:06:16 -0800
|
|
Subject: [PATCH 6/7] Add X509_STORE_CTX_trusted_stack compatibility macro
|
|
|
|
Deprecated in 1.1
|
|
|
|
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
|
---
|
|
src/_cffi_src/openssl/x509_vfy.py | 12 +++++++++++-
|
|
1 file changed, 11 insertions(+), 1 deletion(-)
|
|
|
|
--- a/src/_cffi_src/openssl/x509_vfy.py
|
|
+++ b/src/_cffi_src/openssl/x509_vfy.py
|
|
@@ -265,4 +265,10 @@ static const long Cryptography_HAS_X509_
|
|
#else
|
|
static const long Cryptography_HAS_X509_CB_ISSUER_CHECK = 1;
|
|
#endif
|
|
+
|
|
+#if (OPENSSL_API_COMPAT >= 0x10100000L) && !CRYPTOGRAPHY_IS_LIBRESSL
|
|
+#define X509_STORE_CTX_trusted_stack X509_STORE_CTX_set0_trusted_stack
|
|
+#define X509_STORE_CTX_set_chain X509_STORE_CTX_set0_untrusted
|
|
+#define X509_STORE_CTX_get_chain X509_STORE_CTX_get1_chain
|
|
+#endif
|
|
"""
|