MCPcopy Index your code
hub / github.com/RustPython/RustPython / shared_ciphers

Method shared_ciphers

Lib/ssl.py:934–938  ·  view source on GitHub ↗

Return a list of ciphers shared by the client during the handshake or None if this is not a valid server connection.

(self)

Source from the content-addressed store, hash-verified

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

Callers 3

shared_ciphersMethod · 0.45
test_bio_handshakeMethod · 0.45
wrap_connMethod · 0.45

Calls

no outgoing calls

Tested by 2

test_bio_handshakeMethod · 0.36
wrap_connMethod · 0.36