Skip to content

Commit e448a0c

Browse files
authored
Add X509_V_FLAG_EXTENDED_CRL_SUPPORT binding (#15473)
Expose the OpenSSL verification-parameter flag X509_V_FLAG_EXTENDED_CRL_SUPPORT in the _cffi_src OpenSSL bindings, alongside the existing X509_V_FLAG_CRL_CHECK{,_ALL} constants. This flag enables OpenSSL's extended CRL features during path validation. The flag has existed in OpenSSL since the 0.9.9/1.0.0 development cycle (openssl/openssl@9d84d4e, 2008), so excluding the version guard.
1 parent f45cda9 commit e448a0c

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/_cffi_src/openssl/x509_vfy.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@
101101
static const long X509_V_FLAG_INHIBIT_MAP;
102102
static const long X509_V_FLAG_CHECK_SS_SIGNATURE;
103103
static const long X509_V_FLAG_PARTIAL_CHAIN;
104+
static const long X509_V_FLAG_EXTENDED_CRL_SUPPORT;
104105
105106
static const long X509_CHECK_FLAG_ALWAYS_CHECK_SUBJECT;
106107
static const long X509_CHECK_FLAG_NO_WILDCARDS;

0 commit comments

Comments
 (0)