10 个版本
0.3.1 | 2023年10月15日 |
---|---|
0.3.0 | 2023年6月29日 |
0.2.6 | 2023年4月14日 |
0.2.5 | 2023年3月18日 |
0.1.0 | 2023年3月14日 |
#1205 in 加密学
53 每月下载量
在 bjorn-acme 中使用
365KB
9K SLoC
为 Rust 编写的 Tor 库
示例用法
#[tokio::main]
async fn main() {
pretty_env_logger::init();
let storage = torrosion::storage::FileStorage::new("./storage").await.unwrap();
let mut client = torrosion::Client::new(storage);
client.run().await;
while !client.ready().await {
tokio::time::sleep(std::time::Duration::from_secs(1)).await;
}
let hs_uri = hyper::Uri::from_static("https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion");
let hs_client = torrosion::hs::http::new_hs_client(client);
hs_client.get(hs_uri).await.unwrap();
}
致谢
感谢 开放技术基金 为该库的工作提供资金。
依赖项
~30–45MB
~845K SLoC