MCPcopy Index your code
hub / github.com/python/cpython / shared_ciphers

Method shared_ciphers

Lib/ssl.py:946–950  ·  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

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

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