diff options
author | Christian Heimes <christian@cheimes.de> | 2013-11-23 10:24:32 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-11-23 10:24:32 (GMT) |
commit | 2427b50fdda5eafa75a7b3345826ad805ba95d53 (patch) | |
tree | e33620a1a0f6c2ba4bccb6b9ac5f71aa1909ae77 /Doc | |
parent | 4a281a12f1aa430a6d14db633cc808e50427adeb (diff) | |
download | cpython-2427b50fdda5eafa75a7b3345826ad805ba95d53.zip cpython-2427b50fdda5eafa75a7b3345826ad805ba95d53.tar.gz cpython-2427b50fdda5eafa75a7b3345826ad805ba95d53.tar.bz2 |
Issue #8813: X509_VERIFY_PARAM is only available on OpenSSL 0.9.8+
The patch removes the verify_flags feature on Mac OS X 10.4 with OpenSSL 0.9.7l 28 Sep 2006.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ssl.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 4d87586..7a7ddac 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -1126,6 +1126,7 @@ to speed up repeated connections from the same clients. The flags for certificate verification operations. You can set flags like :data:`VERIFY_CRL_CHECK_LEAF` by ORing them together. By default OpenSSL does neither require nor verify certificate revocation lists (CRLs). + Available only with openssl version 0.9.8+. .. versionadded:: 3.4 |