This module implements Transport Layer Security (TLS) support for Twisted. It requires PyOpenSSL.
If you wish to establish a TLS connection, please use one of the following APIs:
- SSL endpoints for
servers
andclients
startTLS
connectSSL
listenSSL
These APIs all require a contextFactory argument that specifies their security properties, such as certificate, private key, certificate authorities to verify the peer, allowed TLS protocol versions, cipher suites, and so on. The recommended value for this argument is a CertificateOptions
instance; see its documentation for an explanation of the available options.
The contextFactory name is a bit of an anachronism now, as context factories have been replaced with "connection creators", but these objects serve the same role.
Be warned that implementing your own connection creator (i.e.: value for the contextFactory) is both difficult and dangerous; the Twisted team has worked hard to make CertificateOptions
' API comprehensible and unsurprising, and the Twisted team is actively maintaining it to ensure that it becomes more secure over time.
If you are really absolutely sure that you want to take on the risk of implementing your own connection creator based on the pyOpenSSL API, see the server connection creator
and client connection creator
interfaces.
Developers using Twisted, please ignore the Port
, Connector
, and Client
classes defined here, as these are details of certain reactors' TLS implementations, exposed by accident (and remaining here only for compatibility reasons). If you wish to establish a TLS connection, please use one of the APIs listed above.
Note | |
"SSL" (Secure Sockets Layer) is an antiquated synonym for "TLS" (Transport Layer Security). You may see these terms used interchangeably throughout the documentation. |
Class |
|
A representation of ciphers that are acceptable for TLS connections. |
Class |
|
An x509 certificate. |
Class |
|
A CertificateOptions specifies the security properties for a client or server TLS connection used with OpenSSL. |
Class |
|
An x509 certificate request. |
Class |
|
I am an SSL client. |
Class |
|
A context factory for SSL clients. |
Class |
|
Undocumented |
Class |
|
A factory for SSL context objects, for server SSL connections. |
Class |
|
DefaultOpenSSLContextFactory is a factory for server-side SSL context objects. These objects define certain parameters related to SSL handshakes and the subsequent connection. |
Class |
|
A representation of key generation parameters that are required for Diffie-Hellman key exchange. |
Class |
|
Identify and describe an entity. |
Class |
|
No class docstring; 3/10 methods, 0/2 class method documented |
Class |
|
Trust the set of default verify paths that OpenSSL was built with, as specified by SSL_CTX_set_default_verify_paths. |
Class |
|
I am an SSL port. |
Class |
|
An x509 certificate and private key. |
Class |
|
ProtocolNegotiationSupport defines flags which are used to indicate the level of NPN/ALPN support provided by the TLS backend. |
Class |
|
I am an SSL server. |
Class |
|
TLS versions that we can negotiate with the client/server. |
Function | options |
Create a client connection creator for use with APIs such as SSL4ClientEndpoint , connectSSL , and startTLS . |
Function | platform |
Attempt to discover a set of trusted certificate authority certificates (or, in other words: trust roots, or root certificates) whose trust is managed and updated by tools outside of Twisted. |
Function | protocol |
Checks whether your versions of PyOpenSSL and OpenSSL are recent enough to support protocol negotiation, and if they are, what kind of protocol negotiation is supported. |
Function | trust |
Builds an object that trusts multiple root Certificate s. |
Variable | supported |
Undocumented |
Variable |
|
Undocumented |
Create a client connection creator
for use with APIs such as SSL4ClientEndpoint
, connectSSL
, and startTLS
.
Parameters | |
hostname:unicode | The expected name of the remote host. This serves two purposes: first, and most importantly, it verifies that the certificate received from the server correctly identifies the specified hostname. The second purpose is to use the Server Name Indication extension to indicate to the server which certificate should be used. |
trustIOpenSSLTrustRoot | Specification of trust requirements of peers. This may be a Certificate or the result of platformTrust . By default it is platformTrust and you probably shouldn't adjust it unless you really know what you're doing. Be aware that clients using this interface must verify the server; you cannot explicitly pass None since that just means to use platformTrust . |
clientPrivateCertificate | The certificate and private key that the client will use to authenticate to the server. If unspecified, the client will not authenticate. |
acceptablelist of bytes | The protocols this peer is willing to speak after the TLS negotiation has completed, advertised over both ALPN and NPN. If this argument is specified, and no overlap can be found with the other peer, the connection will fail to be established. If the remote peer does not offer NPN or ALPN, the connection will be established, but no protocol wil be negotiated. Protocols earlier in the list are preferred over those later in the list. |
extradict | A dictionary of additional keyword arguments to be presented to CertificateOptions . Please avoid using this unless you absolutely need to; any time you need to pass an option here that is a bug in this interface. |
Returns | |
IOpenSSLClientConnectionCreator | A client connection creator. |
Present Since | |
14.0 |
Attempt to discover a set of trusted certificate authority certificates (or, in other words: trust roots, or root certificates) whose trust is managed and updated by tools outside of Twisted.
If you are writing any client-side TLS code with Twisted, you should use this as the trustRoot argument to CertificateOptions
.
The result of this function should be like the up-to-date list of certificates in a web browser. When developing code that uses platformTrust, you can think of it that way. However, the choice of which certificate authorities to trust is never Twisted's responsibility. Unless you're writing a very unusual application or library, it's not your code's responsibility either. The user may use platform-specific tools for defining which server certificates should be trusted by programs using TLS. The purpose of using this API is to respect that decision as much as possible.
This should be a set of trust settings most appropriate for client TLS connections; i.e. those which need to verify a server's authenticity. You should probably use this by default for any client TLS connection that you create. For servers, however, client certificates are typically not verified; or, if they are, their verification will depend on a custom, application-specific certificate authority.
Returns | |
IOpenSSLTrustRoot | an appropriate trust settings object for your platform. |
Raises | |
NotImplementedError | if this platform is not yet supported by Twisted. At present, only OpenSSL is supported. |
Present Since | |
14.0 | |
Note | |
Currently, Nevertheless, this ought to work as desired by default on:
Hopefully soon, this API will be updated to use more sophisticated trust-root discovery mechanisms. Until then, you can follow tickets in the Twisted tracker for progress on this implementation on Microsoft Windows, macOS, and a fallback for other platforms which do not have native trust management tools. |
Checks whether your versions of PyOpenSSL and OpenSSL are recent enough to support protocol negotiation, and if they are, what kind of protocol negotiation is supported.
Returns | |
constantly.FlagConstant | A combination of flags from ProtocolNegotiationSupport that indicate which mechanisms for protocol negotiation are supported. |
Builds an object that trusts multiple root Certificate
s.
When passed to optionsForClientTLS
, connections using those options will reject any server certificate not signed by at least one of the certificates in the `certificates` list.
Parameters | |
certificates:iterable of CertBase | All certificates which will be trusted. |
Returns | |
IOpenSSLTrustRoot | an object suitable for use as the trustRoot= keyword argument to optionsForClientTLS |
Present Since | |
16.0 |