Home
last modified time | relevance | path

Searched refs:SSLObject (Results 1 – 12 of 12) sorted by relevance

/third_party/python/Lib/
Dssl.py840 class SSLObject: class
997 func.__doc__ = getattr(SSLObject, func.__name__).__doc__
1414 SSLContext.sslobject_class = SSLObject
/third_party/python/Misc/NEWS.d/
D3.7.0b2.rst96 Direct instantiation of SSLSocket and SSLObject objects is now prohibited.
372 handled by the SSLSocket and SSLObject constructor. Channel binding
D3.6.3rc1.rst7 SSLObject.version() now correctly returns None when handshake over BIO has
D3.8.0a1.rst5639 Direct instantiation of SSLSocket and SSLObject objects is now prohibited.
5966 handled by the SSLSocket and SSLObject constructor. Channel binding
D3.5.0a1.rst1073 Add ssl.SSLObject.shared_ciphers() and ssl.SSLSocket.shared_ciphers() to
D3.7.0a1.rst7 SSLObject.version() now correctly returns None when handshake over BIO has
/third_party/python/Doc/library/
Dssl.rst1888 :attr:`SSLContext.sslobject_class` (default :class:`SSLObject`). The SSL
1900 instead of hard-coded :class:`SSLObject`.
1905 :class:`SSLObject`. The attribute can be overridden on instance of class
1906 in order to return a custom subclass of :class:`SSLObject`.
2482 reduced scope variant of :class:`SSLSocket` called :class:`SSLObject` is
2485 .. class:: SSLObject
2497 This class has no public constructor. An :class:`SSLObject` instance
2499 method will create the :class:`SSLObject` instance and bind it to a
2543 :meth:`SSLContext.set_servername_callback` will get an :class:`SSLObject`
2546 Some notes related to the use of :class:`SSLObject`:
[all …]
Dtyping.rst1278 methods, not their type signatures. For example, :class:`ssl.SSLObject`
1281 :meth:`ssl.SSLObject.__init__` method exists only to raise a
1283 it impossible to call (instantiate) :class:`ssl.SSLObject`.
Dasyncio-protocol.rst214 - ``'ssl_object'``: :class:`ssl.SSLObject` or
/third_party/python/Doc/whatsnew/
D3.5.rst1755 The new :class:`~ssl.SSLObject` class has been added to provide SSL protocol
1757 are not necessary or are suboptimal. ``SSLObject`` represents
1767 to create a new ``SSLObject`` instance.
1809 New :meth:`SSLObject.shared_ciphers() <ssl.SSLObject.shared_ciphers>` and
D3.7.rst1370 :class:`~ssl.SSLSocket` and :class:`~ssl.SSLObject` no longer have a public
2177 * Direct instantiation of :class:`ssl.SSLSocket` and :class:`ssl.SSLObject`
/third_party/python/Lib/test/
Dtest_ssl.py1799 class MySSLObject(ssl.SSLObject):
1950 ssl.SSLObject(bio, bio)