tokio-rustls
Asynchronous TLS/SSL streams for Tokio using Rustls.
Basic Structure of a Client
use DNSNameRef;
use ;
// ...
let mut config = new;
config.root_store.add_server_trust_anchors;
let config = from;
let dnsname = try_from_ascii_str.unwrap;
let stream = connect.await?;
let mut stream = config.connect.await?;
// ...
Client Example Program
See examples/client. You can run it with:
Server Example Program
See examples/server. You can run it with:
License & Origin
This project is licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
This started as a fork of tokio-tls.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in tokio-rustls by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.