Start the SSL shutdown handshake.
(self)
| 979 | self._sslobj.do_handshake() |
| 980 | |
| 981 | def unwrap(self): |
| 982 | """Start the SSL shutdown handshake.""" |
| 983 | return self._sslobj.shutdown() |
| 984 | |
| 985 | def get_channel_binding(self, cb_type="tls-unique"): |
| 986 | """Get channel binding data for current connection. Raise ValueError |