interface documentation

class IOpenSSLClientConnectionCreator(Interface): (source)

Known implementations: twisted.internet._sslverify.ClientTLSOptions, twisted.protocols.tls._ContextFactoryToConnectionFactory

View In Hierarchy

A provider of IOpenSSLClientConnectionCreator can create OpenSSL.SSL.Connection objects for TLS clients.
See Also
twisted.internet.ssl
Note
Creating OpenSSL connection objects is subtle, error-prone, and security-critical. Before implementing this interface yourself, consider using twisted.internet.ssl.optionsForClientTLS as your contextFactory.
Method clientConnectionForTLS Create a connection for the given client protocol.
def clientConnectionForTLS(tlsProtocol): (source)
Create a connection for the given client protocol.
Parameters
tlsProtocol:TLSMemoryBIOProtocolthe client protocol making the request.
Returns
OpenSSLConnectionan OpenSSL connection object configured appropriately for the given Twisted protocol.