class TLSMemoryBIOFactory(WrappingFactory): (source)
TLSMemoryBIOFactory
adds TLS to connections.Method | __init__ |
Create a TLSMemoryBIOFactory . |
Method | logPrefix |
Annotate the wrapped factory's log prefix with some text indicating TLS is in use. |
Class Variable | noisy |
Undocumented |
Method | _applyProtocolNegotiation |
Applies ALPN/NPN protocol neogitation to the connection, if the factory supports it. |
Method | _createConnection |
Create an OpenSSL connection and set it up good. |
Instance Variable | _connectionCreator |
a callable which creates an OpenSSL Connection object. |
Instance Variable | _creatorInterface |
the interface which _connectionCreator is expected to implement. |
Inherited from WrappingFactory
:
Method | buildProtocol |
Undocumented |
Method | clientConnectionFailed |
Undocumented |
Method | clientConnectionLost |
Undocumented |
Method | doStart |
Undocumented |
Method | doStop |
Undocumented |
Method | registerProtocol |
Called by protocol to register itself. |
Method | startedConnecting |
Undocumented |
Method | unregisterProtocol |
Called by protocols when they go away. |
Instance Variable | protocols |
Undocumented |
Instance Variable | wrappedFactory |
Undocumented |
TLSMemoryBIOFactory
.Parameters | |
contextFactory:IOpenSSLClientConnectionCreator or IOpenSSLServerConnectionCreator , or, for compatibility with older code, anything implementing twisted.internet.interfaces.IOpenSSLContextFactory . See https://twistedmatrix.com/trac/ticket/7215 for information on the upcoming deprecation of passing a twisted.internet.ssl.ContextFactory here. | Configuration parameters used to create an OpenSSL connection. In order of preference, what you should pass here should be:
|
isClient:bool | Is this a factory for TLS client connections; in other words, those that will send a ClientHello greeting? True if so, False otherwise. This flag determines what interface is expected of contextFactory. If True , contextFactory should provide IOpenSSLClientConnectionCreator ; otherwise it should provide IOpenSSLServerConnectionCreator . |
wrappedFactory:twisted.internet.interfaces.IProtocolFactory | A factory which will create the application-level protocol. |
Returns | |
str | Undocumented |
Parameters | |
connection:OpenSSL.SSL.Connection | The OpenSSL connection object to have ALPN/NPN added to it. |
Returns | |
None | Nothing |
Parameters | |
tlsProtocol:TLSMemoryBIOProtocol | The protocol which is establishing the connection. |
Returns | |
OpenSSL.SSL.Connection | an OpenSSL connection object for tlsProtocol to use |
TLSMemoryBIOProtocol
and returning OpenSSL.SSL.Connection
. =
(source)