openssl-async 0.3.0-alpha.5

Wrappers for the OpenSSL crate to allow use in async applications
Documentation
//! Wrappers for OpenSSL to allow use in async (futures 0.3) applications

#![warn(missing_docs)]

mod accept;
mod connect;
mod handshake;
mod stream;

pub use accept::*;
pub use connect::*;
pub use handshake::*;
pub use stream::*;