An implementation of TLS/SSL streams for Tokio built on top of the [native-tls
crate]
First, add this to your Cargo.toml
:
toml
[dependencies]
native-tls = "0.1"
tokio-tls = { git = "https://github.com/tokio-rs/tokio-tls" }
Next, add this to your crate:
```rust extern crate nativetls; extern crate tokiotls;
use tokio_tls::{TlsConnectorExt, TlsAcceptorExt}; ```
This crate provides two extension traits, TlsConnectorExt
and
TlsAcceptorExt
, which augment the functionality provided by the [native-tls
crate]. These extension traits provide the ability to connect a stream
asynchronously and accept a socket asynchronously. Configuration of TLS
parameters is still done through the support in the native-tls
crate.
By default the native-tls
crate currently uses the "platform appropriate"
backend for a TLS implementation. This means:
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.
tokio-tls
is primarily distributed under the terms of both the MIT license
and the Apache License (Version 2.0), with portions covered by various BSD-like
licenses.
See LICENSE-APACHE, and LICENSE-MIT for details.