Available on crate feature
tls only.Expand description
TLS streams.
Modules§
- native_
tls - An abstraction over platform-specific TLS implementations.
- py_
dynamic_ openssl - rustls
- Rustls - a modern TLS library
Structs§
- Lazy
Config Acceptor - A lazy TLS acceptor that performs the initial handshake and allows access to
the
ClientHellomessage before completing the handshake. - Maybe
TlsStream - Stream that can be either plain TCP or TLS-encrypted
- Start
Handshake - A TLS acceptor that has completed the initial handshake and allows access to
the
ClientHellomessage. - TlsAcceptor
- A wrapper around a
native_tls::TlsAcceptororrustls::ServerConfig, providing an asyncacceptmethod. - TlsConnector
- A wrapper around a
native_tls::TlsConnectororrustls::ClientConfig, providing an asyncconnectmethod. - TlsStream
- A wrapper around an underlying raw stream which implements the TLS or SSL protocol.