Start the SSL shutdown handshake.
(self)
| 963 | self._sslobj.do_handshake() |
| 964 | |
| 965 | def unwrap(self): |
| 966 | """Start the SSL shutdown handshake.""" |
| 967 | return self._sslobj.shutdown() |
| 968 | |
| 969 | def get_channel_binding(self, cb_type="tls-unique"): |
| 970 | """Get channel binding data for current connection. Raise ValueError |