7 releases
0.3.0-alpha.7 | Jun 6, 2019 |
---|---|
0.3.0-alpha.6 | May 13, 2019 |
0.3.0-alpha.5 | Apr 26, 2019 |
0.3.0-alpha.2 | Feb 26, 2019 |
0.3.0-alpha.1 | Jan 22, 2019 |
#1673 in Asynchronous
24KB
288 lines
tls-async
This is an experimental fork of tokio-tls on top of Futures 0.3 AsyncRead, AsyncWrite, and Compat. It is primarily intended for usage with Romio.
An implementation of TLS/SSL streams for Futures 0.3 built on top of the native-tls
crate
Usage
First, add this to your Cargo.toml
:
[dependencies]
tls-async = "0.3.0-alpha.5"
Next, add this to your crate:
use tls_async::{TlsConnector, TlsAcceptor};
You can find few examples how to use this crate in tests directory.
By default the native-tls
crate currently uses the "platform appropriate"
backend for a TLS implementation. This means:
- On Windows, SChannel is used
- On OSX, SecureTransport is used
- Everywhere else, OpenSSL is used
Typically these selections mean that you don't have to worry about a portability when using TLS, these libraries are all normally installed by default.
License
This project is licensed under the MIT license.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in tls-async by you, shall be licensed as MIT, without any additional terms or conditions.
Dependencies
~3–12MB
~151K SLoC