t.i._newtls : module documentation

Part of twisted.internet View Source

This module implements memory BIO based TLS support. It is the preferred implementation and will be used whenever pyOpenSSL 0.10 or newer is installed (whenever twisted.protocols.tls is importable).
Present Since11.1
Function startTLS Add a layer of SSL to a transport.
Class ConnectionMixin A mixin for twisted.internet.abstract.FileDescriptor which adds an ITLSTransport implementation.
Class ClientMixin A mixin for twisted.internet.tcp.Client which just marks it as a client for the purposes of the default TLS handshake.
Class ServerMixin A mixin for twisted.internet.tcp.Server which just marks it as a server for the purposes of the default TLS handshake.
Class _BypassTLS _BypassTLS is used as the transport object for the TLS protocol object used to implement startTLS. Its methods skip any TLS logic which startTLS enables.
def startTLS(transport, contextFactory, normal, bypass): (source)
Add a layer of SSL to a transport.
ParameterstransportThe transport which will be modified. This can either by a FileDescriptor or a FileHandle. The actual requirements of this instance are that it have:
  • a _tlsClientDefault attribute indicating whether the transport is a client (True) or a server (False)
  • a settable TLS attribute which can be used to mark the fact that SSL has been started
  • settable getHandle and getPeerCertificate attributes so these ISSLTransport methods can be added to it
  • a protocol attribute referring to the IProtocol currently connected to the transport, which can also be set to a new IProtocol for the transport to deliver data to
contextFactoryAn SSL context factory defining SSL parameters for the new SSL layer. (type: twisted.internet.ssl.ContextFactory)
normalA flag indicating whether SSL will go in the same direction as the underlying transport goes. That is, if the SSL client will be the underlying client and the SSL server will be the underlying server. True means it is the same, False means they are switched.
bypassA transport base class to call methods on to bypass the new SSL layer (so that the SSL layer itself can send its bytes). (type: type)
API Documentation for Twisted, generated by pydoctor at 2012-12-26 12:18:15.