diff options
author | Chris Burr <chrisburr@users.noreply.github.com> | 2021-03-18 08:24:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-18 08:24:01 (GMT) |
commit | e0b4aa0f5c3c2b2c60f5d8b20cf291442a8df8a5 (patch) | |
tree | f2b692769abf47231b9484a73122f9c369c32c30 /Doc | |
parent | e0bf70d08c4a4a68782702e747e6bf7670667591 (diff) | |
download | cpython-e0b4aa0f5c3c2b2c60f5d8b20cf291442a8df8a5.zip cpython-e0b4aa0f5c3c2b2c60f5d8b20cf291442a8df8a5.tar.gz cpython-e0b4aa0f5c3c2b2c60f5d8b20cf291442a8df8a5.tar.bz2 |
bpo-39342: Expose X509_V_FLAG_ALLOW_PROXY_CERTS in ssl module (GH-18011)
Exposes the `X509_V_FLAG_ALLOW_PROXY_CERTS` constant as `ssl.VERIFY_ALLOW_PROXY_CERTS` to allow for proxy certificate validation as described in: https://www.openssl.org/docs/man1.1.1/man7/proxy-certificates.html
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ssl.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 1cfd165..1adac84 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -634,6 +634,13 @@ Constants .. versionadded:: 3.4 +.. data:: VERIFY_ALLOW_PROXY_CERTS + + Possible value for :attr:`SSLContext.verify_flags` to enables proxy + certificate verification. + + .. versionadded:: 3.10 + .. data:: VERIFY_X509_TRUSTED_FIRST Possible value for :attr:`SSLContext.verify_flags`. It instructs OpenSSL to |