Async TLS for the Tokio runtime
Go to file
2018-03-22 19:47:27 +08:00
examples feat: start futures_impl 2018-03-22 19:47:27 +08:00
src feat: start futures_impl 2018-03-22 19:47:27 +08:00
tests feat: start futures_impl 2018-03-22 19:47:27 +08:00
.gitignore [Added] init 2017-02-21 11:59:05 +08:00
.gitjournal.toml [Added] init 2017-02-21 11:59:05 +08:00
.travis.yml [Added] tests 2017-08-13 18:48:30 +08:00
appveyor.yml [Added] tests 2017-08-13 18:48:30 +08:00
Cargo.toml feat: start futures_impl 2018-03-22 19:47:27 +08:00
LICENSE-APACHE [Changed] update dev dependencies 2017-05-09 12:28:32 +08:00
LICENSE-MIT [Changed] update dev dependencies 2017-05-09 12:28:32 +08:00
README.md fix outdated README 2018-03-07 12:24:16 +08:00

tokio-rustls

travis-ci appveyor crates license license docs.rs

Asynchronous TLS/SSL streams for Tokio using Rustls.

Basic Structure of a Client

use webpki::DNSNameRef;
use rustls::ClientConfig;
use tokio_rustls::ClientConfigExt;

// ...

let mut config = ClientConfig::new();
config.root_store.add_server_trust_anchors(&webpki_roots::TLS_SERVER_ROOTS);
let config = Arc::new(config);
let domain = DNSNameRef::try_from_ascii_str("www.rust-lang.org").unwrap();

TcpStream::connect(&addr)
	.and_then(|socket| config.connect_async(domain, socket))

// ...

Client Example Program

See examples/client.rs. You can run it with:

cargo run --example client hsts.badssl.com

Currently on Windows the example client reads from stdin and writes to stdout using blocking I/O. Until this is fixed, do something this on Windows:

echo | cargo run --example client hsts.badssl.com

Server Example Program

See examples/server.rs. You can run it with:

cargo run --example server -- 127.0.0.1 --cert mycert.der --key mykey.der

License & Origin

tokio-rustls 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.

This started as a fork of tokio-tls.