2017-02-22 05:03:21 +00:00
|
|
|
# tokio-rustls
|
2017-08-15 14:00:20 +00:00
|
|
|
[![travis-ci](https://travis-ci.org/quininer/tokio-rustls.svg?branch=master)](https://travis-ci.org/quininer/tokio-rustls)
|
|
|
|
[![appveyor](https://ci.appveyor.com/api/projects/status/4ukw15enii50suqi?svg=true)](https://ci.appveyor.com/project/quininer/tokio-rustls)
|
|
|
|
[![crates](https://img.shields.io/crates/v/tokio-rustls.svg)](https://crates.io/crates/tokio-rustls)
|
|
|
|
[![license](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/quininer/tokio-rustls/blob/master/LICENSE-MIT)
|
|
|
|
[![license](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/quininer/tokio-rustls/blob/master/LICENSE-APACHE)
|
|
|
|
[![docs.rs](https://docs.rs/tokio-rustls/badge.svg)](https://docs.rs/tokio-rustls/)
|
2017-02-22 05:03:21 +00:00
|
|
|
|
2017-03-30 03:58:30 +00:00
|
|
|
Asynchronous TLS/SSL streams for [Tokio](https://tokio.rs/) using
|
|
|
|
[Rustls](https://github.com/ctz/rustls).
|
2017-02-27 12:59:35 +00:00
|
|
|
|
2017-03-30 03:58:30 +00:00
|
|
|
### Basic Structure of a Client
|
2017-02-27 12:59:35 +00:00
|
|
|
|
|
|
|
```rust
|
|
|
|
use rustls::ClientConfig;
|
|
|
|
use tokio_rustls::ClientConfigExt;
|
|
|
|
|
2017-04-14 04:43:03 +00:00
|
|
|
// ...
|
|
|
|
|
2017-02-27 12:59:35 +00:00
|
|
|
let mut config = ClientConfig::new();
|
|
|
|
config.root_store.add_trust_anchors(&webpki_roots::ROOTS);
|
|
|
|
let config = Arc::new(config);
|
|
|
|
|
|
|
|
TcpStream::connect(&addr, &handle)
|
|
|
|
.and_then(|socket| config.connect_async("www.rust-lang.org", socket))
|
|
|
|
|
|
|
|
// ...
|
|
|
|
```
|
2017-03-30 03:58:30 +00:00
|
|
|
|
|
|
|
### Client Example Program
|
|
|
|
|
|
|
|
See [examples/client.rs](examples/client.rs). You can run it with:
|
|
|
|
|
|
|
|
```sh
|
2017-03-30 20:09:35 +00:00
|
|
|
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:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
echo | cargo run --example client hsts.badssl.com
|
2017-03-30 03:58:30 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### Server Example Program
|
|
|
|
|
|
|
|
See [examples/server.rs](examples/server.rs). You can run it with:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
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](LICENSE-MIT) and
|
|
|
|
the [Apache License (Version 2.0)](LICENSE-APACHE), with portions covered by various BSD-like
|
|
|
|
licenses.
|
|
|
|
|
|
|
|
This started as a fork of [tokio-tls](https://github.com/tokio-rs/tokio-tls).
|