1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//! Asynchronous TLS/SSL streams for async-std and AsyncRead/AsyncWrite sockets using [rustls](https://github.com/ctz/rustls).

#![deny(unsafe_code)]

mod acceptor;
pub mod client;
mod common;
mod connector;
mod rusttls;
pub mod server;

pub use acceptor::TlsAcceptor;
pub use connector::TlsConnector;

#[cfg(feature = "early-data")]
#[cfg(test)]
mod test_0rtt;