Return a list of ciphers shared by the client during the handshake or None if this is not a valid server connection.
(self)
| 944 | return self._sslobj.server_sigalg() |
| 945 | |
| 946 | def shared_ciphers(self): |
| 947 | """Return a list of ciphers shared by the client during the handshake or |
| 948 | None if this is not a valid server connection. |
| 949 | """ |
| 950 | return self._sslobj.shared_ciphers() |
| 951 | |
| 952 | def compression(self): |
| 953 | """Return the current compression algorithm in use, or ``None`` if |
no outgoing calls