diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-08 16:46:17 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-08 16:46:17 (GMT) |
commit | 0ee4c9f274960bb717492b0827f6d22af0b1e60b (patch) | |
tree | 58ada4e122a732c408de6d7679a706e6cdfbe484 /Doc | |
parent | 96fd54eaec700cc50e5960f45ee79bc25c2c48c5 (diff) | |
download | cpython-0ee4c9f274960bb717492b0827f6d22af0b1e60b.zip cpython-0ee4c9f274960bb717492b0827f6d22af0b1e60b.tar.gz cpython-0ee4c9f274960bb717492b0827f6d22af0b1e60b.tar.bz2 |
Update what's new
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 4972e9f..97a1696 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -403,6 +403,11 @@ New, Improved, and Deprecated Modules :meth:`~ssl.SSLContext.wrap_socket` method allows to create an SSL socket from such an SSL context. (Added by Antoine Pitrou; :issue:`8550`.) + A new function, :func:`ssl.match_hostname`, helps implement server identity + verification for higher-level protocols by implementing the rules of + HTTPS (from :rfc:`2818`), which are also suitable for other protocols. + (Added by Antoine Pitrou, :issue:`1589`). + The :func:`ssl.wrap_socket` constructor function now takes a *ciphers* argument that's a string listing the encryption algorithms to be allowed; the format of the string is described `in the OpenSSL documentation |