Searched refs:wrap_bio (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Lib/asyncio/ |
D | sslproto.py | 116 self._sslobj = self._context.wrap_bio(
|
/third_party/python/Lib/test/ |
D | test_ssl.py | 1808 obj = ctx.wrap_bio(ssl.MemoryBIO(), ssl.MemoryBIO(), server_side=True) 1873 ctx.wrap_bio(ssl.MemoryBIO(), ssl.MemoryBIO(), 1876 ctx.wrap_bio(ssl.MemoryBIO(), ssl.MemoryBIO(), 1879 ctx.wrap_bio(ssl.MemoryBIO(), ssl.MemoryBIO(), 1958 client = client_ctx.wrap_bio(c_in, c_out, server_hostname=hostname) 1959 server = server_ctx.wrap_bio(s_in, s_out, server_side=True) 2308 sslobj = ctx.wrap_bio(incoming, outgoing, False, 2341 sslobj = ctx.wrap_bio(incoming, outgoing, False)
|
/third_party/python/Lib/ |
D | ssl.py | 522 def wrap_bio(self, incoming, outgoing, server_side=False, member in SSLContext
|
/third_party/python/Doc/library/ |
D | ssl.rst | 1884 .. method:: SSLContext.wrap_bio(incoming, outgoing, server_side=False, \ 1904 The return type of :meth:`SSLContext.wrap_bio`, defaults to 2498 must be created using the :meth:`~SSLContext.wrap_bio` method. This 2553 - There is no module-level ``wrap_bio()`` call like there is for 2559 :meth:`~SSLContext.wrap_bio`. In earlier versions, it was possible to
|
/third_party/python/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 | 1373 :meth:`~ssl.SSLContext.wrap_socket` and :meth:`~ssl.SSLContext.wrap_bio`.
|
/third_party/python/Misc/NEWS.d/ |
D | 3.7.0a1.rst | 1643 Make return types of SSLContext.wrap_bio() and SSLContext.wrap_socket()
|