Async TLS streams backed by OpenSSL.
Provides SslStream, an async wrapper around openssl::ssl::SslStream that
implements futures_io::AsyncRead and futures_io::AsyncWrite instead of the
blocking std::io::Read / std::io::Write traits, making it usable with any
runtime that builds on the futures-io ecosystem.
Forked from tokio-openssl and
reworked to target the runtime-agnostic futures-io traits rather than the
tokio-specific ones.
Example
use SslStream;
use ;
use Pin;
async
For a complete runnable example see examples/.
License
Licensed under either of Apache License, Version 2.0 or MIT license at your option.