diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-12-23 19:58:36 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-12-23 19:58:36 (GMT) |
commit | 73fc81402bed33d10ebf0f372ab99b77b90f2c85 (patch) | |
tree | 322dc71d0f11ff538f91a8294c6158e2da6d3bcb | |
parent | 78c1b42fdee9bf1991f5486c51917b0e6b50d0ef (diff) | |
download | cpython-73fc81402bed33d10ebf0f372ab99b77b90f2c85.zip cpython-73fc81402bed33d10ebf0f372ab99b77b90f2c85.tar.gz cpython-73fc81402bed33d10ebf0f372ab99b77b90f2c85.tar.bz2 |
Add whatsnew items
-rw-r--r-- | Doc/whatsnew/3.3.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 8ca94c9..86daa87 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -639,12 +639,24 @@ ssl (Contributed by Adam Simpkins in :issue:`12803`) +* Diffie-Hellman key exchange, both regular and Elliptic Curve-based, is + now supported through the :meth:`~ssl.SSLContext.load_dh_params` and + :meth:`~ssl.SSLContext.set_ecdh_curve` methods. + + (Contributed by Antoine Pitrou in :issue:`13626` and :issue:`13627`) + * SSL sockets have a new :meth:`~ssl.SSLSocket.get_channel_binding` method allowing the implementation of certain authentication mechanisms such as SCRAM-SHA-1-PLUS. (Contributed by Jacek Konieczny in :issue:`12551`) +* You can query the SSL compression algorithm used by an SSL socket, thanks + to its new :meth:`~ssl.SSLSocket.compression` method. + + (Contributed by Antoine Pitrou in :issue:`13634`) + + shutil ------ |