whatsnew: SSLSocket.getpeercert new values returned. (#18379)

This commit is contained in:
R David Murray 2014-03-09 12:55:58 -04:00
parent 4e40cec924
commit 2dd0473722
2 changed files with 5 additions and 3 deletions

View file

@ -841,8 +841,6 @@ 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.

View file

@ -1297,6 +1297,10 @@ Support for server-side SNI using the new
:meth:`ssl.SSLContext.set_servername_callback` method.
(Contributed by Daniel Black in :issue:`8109`.)
The dictionary returned by :meth:`.SSLSocket.getpeercert` contains additional
``X509v3`` extension items: ``crlDistributionPoints``, ``calIssuers``, and
``OCSP`` URIs. (Contributed by Christian Heimes in :issue:`18379`.)
stat
----