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
|
2018-03-07 04:24:16 +00:00
|
|
|
use webpki::DNSNameRef;
|
2018-09-30 17:38:42 +00:00
|
|
|
use tokio_rustls::{ TlsConnector, rustls::ClientConfig };
|
2017-02-27 12:59:35 +00:00
|
|
|
|
2017-04-14 04:43:03 +00:00
|
|
|
// ...
|
|
|
|
|
2017-02-27 12:59:35 +00:00
|
|
|
let mut config = ClientConfig::new();
|
2017-08-28 04:53:47 +00:00
|
|
|
config.root_store.add_server_trust_anchors(&webpki_roots::TLS_SERVER_ROOTS);
|
2018-09-30 17:38:42 +00:00
|
|
|
let config = TlsConnector::from(Arc::new(config));
|
|
|
|
let dnsname = DNSNameRef::try_from_ascii_str("www.rust-lang.org").unwrap();
|
2017-02-27 12:59:35 +00:00
|
|
|
|
2018-03-07 04:24:16 +00:00
|
|
|
TcpStream::connect(&addr)
|
2018-09-30 17:38:42 +00:00
|
|
|
.and_then(move |socket| config.connect(dnsname, socket))
|
2017-02-27 12:59:35 +00:00
|
|
|
|
|
|
|
// ...
|
|
|
|
```
|
2017-03-30 03:58:30 +00:00
|
|
|
|
|
|
|
### Client Example Program
|
|
|
|
|
2018-03-23 16:46:21 +00:00
|
|
|
See [examples/client](examples/client/src/main.rs). You can run it with:
|
2017-03-30 03:58:30 +00:00
|
|
|
|
|
|
|
```sh
|
2018-03-23 16:46:21 +00:00
|
|
|
cd examples/client
|
|
|
|
cargo run -- hsts.badssl.com
|
2017-03-30 20:09:35 +00:00
|
|
|
```
|
|
|
|
|
2017-03-30 03:58:30 +00:00
|
|
|
### Server Example Program
|
|
|
|
|
2018-03-23 16:46:21 +00:00
|
|
|
See [examples/server](examples/server/src/main.rs). You can run it with:
|
2017-03-30 03:58:30 +00:00
|
|
|
|
|
|
|
```sh
|
2018-03-23 16:46:21 +00:00
|
|
|
cd examples/server
|
|
|
|
cargo run -- 127.0.0.1 --cert mycert.der --key mykey.der
|
2017-03-30 03:58:30 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### License & Origin
|
|
|
|
|
2019-03-12 16:40:54 +00:00
|
|
|
This project is licensed under either of
|
|
|
|
|
|
|
|
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
* MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
|
|
|
http://opensource.org/licenses/MIT)
|
|
|
|
|
|
|
|
at your option.
|
2017-03-30 03:58:30 +00:00
|
|
|
|
|
|
|
This started as a fork of [tokio-tls](https://github.com/tokio-rs/tokio-tls).
|
2019-03-12 16:40:54 +00:00
|
|
|
|
|
|
|
### 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.
|