Part of twisted.protocols.tls View Source View In Hierarchy
Implements interfaces: twisted.internet.interfaces.ISSLTransport, twisted.internet.interfaces.ISystemHandle
TLSMemoryBIOProtocol
is a protocol wrapper which uses OpenSSL via a memory BIO to encrypt bytes
written to it before sending them on to the underlying transport and
decrypts bytes received from the underlying transport before delivering
them to the wrapped protocol.Instance Variables | _tlsConnection | The OpenSSL.SSL.Connection instance which is encrypted and
decrypting this connection.
|
_lostConnection | A flag indicating whether connection loss has already been dealt with
(True ) or not (False ).
| |
_writeBlockedOnRead | A flag indicating whether further writing must wait for data to be received
(True ) or not (False ).
| |
_appSendBuffer | A list of str of application-level (cleartext)
data which is waiting for _writeBlockedOnRead to be reset to
False so it can be passed to and perhaps accepted by
_tlsConnection.send .
| |
_connectWrapped | A flag indicating whether or not to call makeConnection on the
wrapped protocol. This is for the reactor's
ITLSTransport.startTLS implementation, since it has a protocol
which it has already called makeConnection on, and which has
no interest in a new transport. See #3821.
| |
_handshakeDone | A flag indicating whether or not the handshake is known to have completed
successfully (True ) or not (False ). This is used
to control error reporting behavior. If the handshake has not completed,
the underlying OpenSSL.SSL.Error will be passed to the
application's connectionLost method. If it has completed, any
unexpected OpenSSL.SSL.Error will be turned into a ConnectionLost .
This is weird; however, it is simply an attempt at a faithful
re-implementation of the behavior provided by twisted.internet.ssl .
| |
_reason | If an unexpected OpenSSL.SSL.Error occurs which causes the
connection to be lost, it is saved here. If appropriate, this may be used
as the reason passed to the application protocol's
connectionLost method.
|
Method | __init__ | Undocumented |
Method | getHandle | Return the OpenSSL.SSL.Connection object being used to
encrypt and |
Method | makeConnection | Connect this wrapper to the given transport and initialize the |
Method | dataReceived | Deliver any received bytes to the receive BIO and then read and deliver |
Method | connectionLost | Handle the possible repetition of calls to this method (due to either |
Method | loseConnection | Send a TLS close alert and close the underlying connection. |
Method | write | Process the given application bytes and send any resulting TLS traffic |
Method | writeSequence | Write a sequence of application bytes by joining them into one string |
Method | getPeerCertificate | Return an object with the peer's certificate info. |
Method | _flushSendBIO | Read any bytes out of the send BIO and write them to the underlying |
Method | _flushReceiveBIO | Try to receive any application-level bytes which are now available |
Inherited from ProtocolWrapper:
Method | getPeer | Undocumented |
Method | getHost | Undocumented |
Method | registerProducer | Undocumented |
Method | unregisterProducer | Undocumented |
Method | stopConsuming | Undocumented |
Method | __getattr__ | Undocumented |
Inherited from BaseProtocol (via ProtocolWrapper, Protocol):
Method | connectionMade | Called when a connection is made. |
OpenSSL.SSL.Connection
object being used to
encrypt and decrypt this connection.
This is done for the benefit of twisted.internet.ssl.Certificate
's
peerFromTransport
and hostFromTransport
methods
only. A different system handle may be returned by future versions of this
method.
OpenSSL.SSL.Connection
with a memory BIO.write
.