From 563b1193997512836603777d31e2ea281b3dc79a Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Thu, 19 Oct 2023 18:47:17 -0400 Subject: [PATCH] Added binding needed for pyOpenSSL (#9739) (#9740) --- src/_cffi_src/openssl/x509.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/_cffi_src/openssl/x509.py b/src/_cffi_src/openssl/x509.py index 66e8592042fd..9f79104aa632 100644 --- a/src/_cffi_src/openssl/x509.py +++ b/src/_cffi_src/openssl/x509.py @@ -195,6 +195,9 @@ const ASN1_INTEGER *X509_REVOKED_get0_serialNumber(const X509_REVOKED *); const ASN1_TIME *X509_REVOKED_get0_revocationDate(const X509_REVOKED *); + +void X509_ALGOR_get0(const ASN1_OBJECT **, int *, const void **, + const X509_ALGOR *); """ CUSTOMIZATIONS = """