diff options
author | Benjamin Fogle <benfogle@gmail.com> | 2023-03-22 14:08:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-22 14:08:41 (GMT) |
commit | af9c34f6ef8dceb21871206eb3e4d350f6e3d3dc (patch) | |
tree | 8759d3d65c3e259381da95426e85899842064829 /Doc | |
parent | ea93bde4ece139d4152a59f2c38aa6568559447c (diff) | |
download | cpython-af9c34f6ef8dceb21871206eb3e4d350f6e3d3dc.zip cpython-af9c34f6ef8dceb21871206eb3e4d350f6e3d3dc.tar.gz cpython-af9c34f6ef8dceb21871206eb3e4d350f6e3d3dc.tar.bz2 |
gh-96931: Fix incorrect results in ssl.SSLSocket.shared_ciphers (#96932)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ssl.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 30f2a07..4b60b7c 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -1218,7 +1218,7 @@ SSL sockets also have the following additional methods and attributes: .. method:: SSLSocket.shared_ciphers() - Return the list of ciphers shared by the client during the handshake. Each + Return the list of ciphers available in both the client and server. Each entry of the returned list is a three-value tuple containing the name of the cipher, the version of the SSL protocol that defines its use, and the number of secret bits the cipher uses. :meth:`~SSLSocket.shared_ciphers` returns |