Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions Doc/library/ssl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,9 @@ Signature algorithms
:meth:`SSLContext.set_client_sigalgs` and
:meth:`SSLContext.set_server_sigalgs` methods.

This function requires OpenSSL 3.4 or later; it raises
:exc:`NotImplementedError` when linked against an older version.

.. versionadded:: 3.15


Expand Down Expand Up @@ -1323,6 +1326,9 @@ SSL sockets also have the following additional methods and attributes:
authentication on this connection, or ``None`` if no connection has been
established or client authentication didn't occur.

This method requires OpenSSL 3.5 or later; it raises
:exc:`NotImplementedError` when linked against an older version.

.. versionadded:: 3.15

.. method:: SSLSocket.server_sigalg()
Expand All @@ -1331,6 +1337,9 @@ SSL sockets also have the following additional methods and attributes:
handshake on this connection, or ``None`` if no connection has been
established or the cipher suite has no signature.

This method requires OpenSSL 3.5 or later; it raises
:exc:`NotImplementedError` when linked against an older version.

.. versionadded:: 3.15

.. method:: SSLSocket.compression()
Expand Down
Loading