SSLContext.wrap_bio(incoming, outgoing, server_side=False, server_hostname=None)
Create a new SSLObject
instance by wrapping the BIO objects incoming and outgoing. The SSL routines will read input data from the incoming BIO and write data to the outgoing BIO.
The server_side and server_hostname parameters have the same meaning as in SSLContext.wrap_socket()
.
Please login to continue.