10个版本
使用旧的Rust 2015
0.3.0-rc.17 | 2020年6月5日 |
---|---|
0.3.0-rc.6 | 2020年1月21日 |
0.3.0-rc.5 | 2019年5月11日 |
0.3.0-rc.4 | 2018年10月27日 |
0.1.0 | 2017年7月12日 |
#365 在 HTTP客户端
每月 551 次下载
在 8 个Crate中使用(通过 acick-dropbox)
29KB
283 代码行
hyper-sync-rustls
这是rustls
TLS堆栈和同步版hyper
HTTP库之间的集成。这是为同步Hyper维护的hyper-rustls
分支。
使用方法
以下是一些示例,说明在使用您现有的基于hyper的程序中使用rustls所需的最小更改。请注意,这些是从原始hyper源派生的工作,并按照hyper的许可进行分发。
客户端
启用client
功能以访问客户端类型。
--- ../hyper/examples/client.rs 2016-10-03 23:29:00.850098245 +0100
+++ examples/client.rs 2016-10-08 07:36:05.076449122 +0100
@@ -1,6 +1,8 @@
#![deny(warnings)]
extern crate hyper;
+extern crate hyper_sync_rustls;
+
extern crate env_logger;
use std::env;
@@ -8,6 +10,7 @@
use hyper::Client;
use hyper::header::Connection;
+use hyper::net::HttpsConnector;
fn main() {
env_logger::init().unwrap();
@@ -32,7 +35,7 @@
}
Client::with_http_proxy(proxy, port)
},
- _ => Client::new()
+ _ => Client::with_connector(HttpsConnector::new(hyper_sync_rustls::TlsClient::new()))
};
let mut res = client.get(&*url)
服务器
启用server
功能以访问客户端类型。
--- ../hyper/examples/server.rs 2016-10-03 23:29:00.850098245 +0100
+++ examples/server.rs 2016-10-08 07:31:38.720667338 +0100
@@ -1,5 +1,6 @@
#![deny(warnings)]
extern crate hyper;
+extern crate hyper_sync_rustls;
extern crate env_logger;
use std::io::copy;
@@ -41,7 +42,10 @@
fn main() {
env_logger::init().unwrap();
- let server = Server::http("127.0.0.1:1337").unwrap();
+ let certs = hyper_sync_rustls::util::load_certs("examples/sample.pem").unwrap();
+ let key = hyper_sync_rustls::util::load_private_key("examples/sample.rsa").unwrap();
+ let tls = hyper_sync_rustls::TlsServer::new(certs, key);
+ let server = Server::https("127.0.0.1:1337", tls).unwrap();
let _guard = server.handle(echo);
- println!("Listening on http://127.0.0.1:1337");
+ println!("Listening on https://127.0.0.1:1337");
}
许可证
hyper-sync-rustls
的许可证是以下之一,供您选择
依赖关系
~13MB
~359K SLoC