(self, cb_type="tls-unique")
| 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): |
nothing calls this directly
no test coverage detected