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

Method get_channel_binding

Lib/ssl.py:1476–1484  ·  view source on GitHub ↗
(self, cb_type="tls-unique")

Source from the content-addressed store, hash-verified

1474
1475 @_sslcopydoc
1476 def get_channel_binding(self, cb_type="tls-unique"):
1477 if self._sslobj is not None:
1478 return self._sslobj.get_channel_binding(cb_type)
1479 else:
1480 if cb_type not in CHANNEL_BINDING_TYPES:
1481 raise ValueError(
1482 "{0} channel binding type not implemented".format(cb_type)
1483 )
1484 return None
1485
1486 @_sslcopydoc
1487 def version(self):

Callers

nothing calls this directly

Calls 2

get_channel_bindingMethod · 0.45
formatMethod · 0.45

Tested by

no test coverage detected