twisted.internet.interfaces.IOpenSSLContextFactory(Interface)
interface documentationtwisted.internet.interfaces
View Source
(View In Hierarchy)
Known implementations: twisted.internet.ssl.CertificateOptions, twisted.internet.ssl.ClientContextFactory, twisted.internet.ssl.ContextFactory, twisted.web.client._ContextFactoryWithContext
A provider of IOpenSSLContextFactory
is capable of generating OpenSSL.SSL.Context
classes suitable for configuring TLS on a connection. A provider will store
enough state to be able to generate these contexts as needed for individual
connections.
See Also | twisted.internet.ssl |
Method | getContext | Returns a TLS context object, suitable for securing a TLS connection. This context object will be appropriately customized for the connection based on the state in this object. |
Returns a TLS context object, suitable for securing a TLS connection. This context object will be appropriately customized for the connection based on the state in this object.
Returns | A TLS context object. (type: OpenSSL.SSL.Context ) |