Return a list of ciphers shared by the client during the handshake or None if this is not a valid server connection.
(self)
| 932 | return self._sslobj.cipher() |
| 933 | |
| 934 | def shared_ciphers(self): |
| 935 | """Return a list of ciphers shared by the client during the handshake or |
| 936 | None if this is not a valid server connection. |
| 937 | """ |
| 938 | return self._sslobj.shared_ciphers() |
| 939 | |
| 940 | def compression(self): |
| 941 | """Return the current compression algorithm in use, or ``None`` if |
no outgoing calls