Searched refs:wrap_bio (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Lib/asyncio/ |
D | sslproto.py | 117 self._sslobj = self._context.wrap_bio(
|
/external/python/cpython3/Lib/test/ |
D | test_ssl.py | 1655 obj = ctx.wrap_bio(ssl.MemoryBIO(), ssl.MemoryBIO()) 1705 ctx.wrap_bio(ssl.MemoryBIO(), ssl.MemoryBIO(), 1708 ctx.wrap_bio(ssl.MemoryBIO(), ssl.MemoryBIO(), 1711 ctx.wrap_bio(ssl.MemoryBIO(), ssl.MemoryBIO(), 1790 client = client_ctx.wrap_bio(c_in, c_out, server_hostname=hostname) 1791 server = server_ctx.wrap_bio(s_in, s_out, server_side=True) 2105 sslobj = ctx.wrap_bio(incoming, outgoing, False, 2137 sslobj = ctx.wrap_bio(incoming, outgoing, False)
|
/external/python/cpython3/Lib/ |
D | ssl.py | 415 def wrap_bio(self, incoming, outgoing, server_side=False, member in SSLContext
|
/external/python/cpython3/Doc/library/ |
D | ssl.rst | 1830 .. method:: SSLContext.wrap_bio(incoming, outgoing, server_side=False, \ 1850 The return type of :meth:`SSLContext.wrap_bio`, defaults to 2428 must be created using the :meth:`~SSLContext.wrap_bio` method. This 2480 - There is no module-level ``wrap_bio()`` call like there is for 2486 :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 | 1352 :meth:`~ssl.SSLContext.wrap_socket` and :meth:`~ssl.SSLContext.wrap_bio`.
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.0a1.rst | 1644 Make return types of SSLContext.wrap_bio() and SSLContext.wrap_socket()
|