async-tls 0.7.0

Asynchronous TLS/SSL streams using Rustls.
Documentation
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::{Accept, TlsAcceptor};
pub use connector::{Connect, TlsConnector};

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