Expand description
TLS streams.
Re-exports§
pub use compio_py_dynamic_openssl as py_dynamic_openssl;py-dynamic-opensslpub use native_tls;native-tlspub use rustls;rustls
Structs§
- Lazy
Config Acceptor rustls - 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, with compatibility for
futures_util. - Start
Handshake rustls - 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.