74 个版本
0.26.0 | 2024 年 3 月 22 日 |
---|---|
0.25.0 | 2023 年 12 月 5 日 |
0.25.0-alpha.4 | 2023 年 11 月 30 日 |
0.24.1 | 2023 年 6 月 9 日 |
0.1.6 | 2017 年 3 月 31 日 |
在 异步 中排名 4
每月下载量 8,741,203
用于 4,759 个 包(495 个直接使用)
63KB
1.5K SLoC
tokio-rustls
使用 Rustls 为 Tokio 提供的异步 TLS/SSL 流。
客户端基本结构
use rustls_pki_types::ServerName;
use std::sync::Arc;
use tokio::net::TcpStream;
use tokio_rustls::rustls::{ClientConfig, RootCertStore};
use tokio_rustls::TlsConnector;
// ...
let mut root_cert_store = RootCertStore::empty();
root_cert_store.extend(webpki_roots::TLS_SERVER_ROOTS.iter().cloned());
let config = ClientConfig::builder()
.with_root_certificates(root_cert_store)
.with_no_client_auth();
let connector = TlsConnector::from(Arc::new(config));
let dnsname = ServerName::try_from("www.rust-lang.org").unwrap();
let stream = TcpStream::connect(&addr).await?;
let mut stream = connector.connect(dnsname, stream).await?;
// ...
客户端示例程序
见 examples/client.rs。您可以用以下命令运行它:
cargo run --example client -- hsts.badssl.com
服务器示例程序
见 examples/server.rs。您可以用以下命令运行它:
cargo run --example server -- 127.0.0.1:8000 --cert mycert.der --key mykey.der
许可 & 出处
此项目根据您的选择受以下任一许可协议的保护:
- Apache License,版本 2.0,(LICENSE-APACHE 或 https://www.apache.org/licenses/LICENSE-2.0)
- MIT 许可证 (LICENSE-MIT 或 https://opensource.org/licenses/MIT)
。
这最初是从 tokio-tls 分支出来的。
贡献
除非您明确说明,否则根据 Apache-2.0 许可证定义,您提交给 tokio-rustls 的任何贡献都将双重许可如上所述,而无需任何附加条款或条件。
依赖项
~9–31MB
~713K SLoC