Searched refs:wrap_bio (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Lib/asyncio/ |
D | sslproto.py | 116 self._sslobj = self._context.wrap_bio(
|
/external/python/cpython3/Lib/test/ |
D | test_ssl.py | 1737 obj = ctx.wrap_bio(ssl.MemoryBIO(), ssl.MemoryBIO()) 1803 ctx.wrap_bio(ssl.MemoryBIO(), ssl.MemoryBIO(), 1806 ctx.wrap_bio(ssl.MemoryBIO(), ssl.MemoryBIO(), 1809 ctx.wrap_bio(ssl.MemoryBIO(), ssl.MemoryBIO(), 1888 client = client_ctx.wrap_bio(c_in, c_out, server_hostname=hostname) 1889 server = server_ctx.wrap_bio(s_in, s_out, server_side=True) 2203 sslobj = ctx.wrap_bio(incoming, outgoing, False, 2235 sslobj = ctx.wrap_bio(incoming, outgoing, False)
|
/external/python/cpython3/Lib/ |
D | ssl.py | 510 def wrap_bio(self, incoming, outgoing, server_side=False, member in SSLContext
|
/external/python/cpython3/Doc/library/ |
D | ssl.rst | 1842 .. method:: SSLContext.wrap_bio(incoming, outgoing, server_side=False, \ 1862 The return type of :meth:`SSLContext.wrap_bio`, defaults to 2473 must be created using the :meth:`~SSLContext.wrap_bio` method. This 2528 - There is no module-level ``wrap_bio()`` call like there is for 2534 :meth:`~SSLContext.wrap_bio`. In earlier versions, it was possible to
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.5.rst | 1766 A new :meth:`SSLContext.wrap_bio() <ssl.SSLContext.wrap_bio>` method can be used
|
D | 3.7.rst | 1372 :meth:`~ssl.SSLContext.wrap_socket` and :meth:`~ssl.SSLContext.wrap_bio`.
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.0a1.rst | 1643 Make return types of SSLContext.wrap_bio() and SSLContext.wrap_socket()
|