From 1cafac4d8fc5301d4e58bedbac45722bf7cdfd32 Mon Sep 17 00:00:00 2001 From: vEpiphyte Date: Thu, 15 Dec 2022 19:02:37 -0500 Subject: Add support for X509_V_FLAG_PARTIAL_CHAIN (#1166) * Add support for X509_V_FLAG_PARTIAL_CHAIN * Remove unneeded import * Update changelog to add PR number. * Fix whitespace issue identified by black --- src/OpenSSL/crypto.py | 1 + 1 file changed, 1 insertion(+) (limited to 'src/OpenSSL') diff --git a/src/OpenSSL/crypto.py b/src/OpenSSL/crypto.py index 18b4590..4d7d03a 100644 --- a/src/OpenSSL/crypto.py +++ b/src/OpenSSL/crypto.py @@ -1611,6 +1611,7 @@ class X509StoreFlags: INHIBIT_MAP: int = _lib.X509_V_FLAG_INHIBIT_MAP NOTIFY_POLICY: int = _lib.X509_V_FLAG_NOTIFY_POLICY CHECK_SS_SIGNATURE: int = _lib.X509_V_FLAG_CHECK_SS_SIGNATURE + PARTIAL_CHAIN: int = _lib.X509_V_FLAG_PARTIAL_CHAIN class X509Store: -- cgit v1.2.1