summaryrefslogtreecommitdiff
path: root/src/OpenSSL
diff options
context:
space:
mode:
authorvEpiphyte <epiphyte@vertex.link>2022-12-15 19:02:37 -0500
committerGitHub <noreply@github.com>2022-12-15 19:02:37 -0500
commit1cafac4d8fc5301d4e58bedbac45722bf7cdfd32 (patch)
treef30741d04c763aa5a38a3115e5cfa3e0d1438069 /src/OpenSSL
parent81c9eb16fcc41be06128c23c87eef849676e1a12 (diff)
downloadpyopenssl-1cafac4d8fc5301d4e58bedbac45722bf7cdfd32.tar.gz
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
Diffstat (limited to 'src/OpenSSL')
-rw-r--r--src/OpenSSL/crypto.py1
1 files changed, 1 insertions, 0 deletions
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: