Crate async_std_openssl

Source
Expand description

Async TLS streams backed by OpenSSL.

This crate provides a wrapper around the openssl crate’s SslStream type that works with with [async-std]’s AsyncRead and AsyncWrite traits rather than std’s blocking Read and Write traits.

Re-exports§

pub use crate::tls_stream_wrapper::SslStreamWrapper;

Modules§

tls_stream_wrapper
Stream Wrappers for SSL to extend support for some consuming Library use cases.

Structs§

SslStream
An asynchronous version of openssl::ssl::SslStream.