diff options
author | Christian Heimes <christian@cheimes.de> | 2013-11-21 02:40:15 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-11-21 02:40:15 (GMT) |
commit | bd3a7f90b51c6bd7d057bad9d7addd0bed8a6e7d (patch) | |
tree | 15f4994108480a9d51bdc38c444c532cb7e11474 /Doc/library | |
parent | efff7060f893c3a06543ab955696663a64eb2109 (diff) | |
download | cpython-bd3a7f90b51c6bd7d057bad9d7addd0bed8a6e7d.zip cpython-bd3a7f90b51c6bd7d057bad9d7addd0bed8a6e7d.tar.gz cpython-bd3a7f90b51c6bd7d057bad9d7addd0bed8a6e7d.tar.bz2 |
Issue #18379: SSLSocket.getpeercert() returns CA issuer AIA fields, OCSP
and CRL distribution points.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/ssl.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 943a8f8..ce37c95 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -733,6 +733,10 @@ SSL sockets also have the following additional methods and attributes: .. versionchanged:: 3.4 :exc:`ValueError` is raised when the handshake isn't done. + .. versionchanged:: 3.4 + The returned dictionary includes additional X509v3 extension items + such as ``crlDistributionPoints``, ``caIssuers`` and ``OCSP`` URIs. + .. method:: SSLSocket.cipher() Returns a three-value tuple containing the name of the cipher being used, the |