diff options
author | Christian Heimes <christian@python.org> | 2021-05-02 14:38:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-02 14:38:02 (GMT) |
commit | d8389e3e50864447a74605d7ede3d14246bc633a (patch) | |
tree | d52bd13e9eee4db7f9fb5e1b43129969f18c3f55 /Doc/library | |
parent | 60ce8f0be6354ad565393ab449d8de5d713f35bc (diff) | |
download | cpython-d8389e3e50864447a74605d7ede3d14246bc633a.zip cpython-d8389e3e50864447a74605d7ede3d14246bc633a.tar.gz cpython-d8389e3e50864447a74605d7ede3d14246bc633a.tar.bz2 |
bpo-38820: Add ssl, hashlib, and hmac changes to whatsnew 3.10 (GH-25817)
Signed-off-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/ssl.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 4d43fa0..afa3d87 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -1358,6 +1358,10 @@ SSL sockets also have the following additional methods and attributes: .. versionadded:: 3.3 + .. deprecated:: 3.10 + + NPN has been superseded by ALPN + .. method:: SSLSocket.unwrap() Performs the SSL shutdown handshake, which removes the TLS layer from the @@ -1714,6 +1718,10 @@ to speed up repeated connections from the same clients. .. versionadded:: 3.3 + .. deprecated:: 3.10 + + NPN has been superseded by ALPN + .. attribute:: SSLContext.sni_callback Register a callback function that will be called after the TLS Client Hello |