转到文件
Sarah Jamie Lewis 30536f21c8 Bump Version 2021-01-14 02:23:00 -08:00
examples Add Functionality for Tor Runner / Torrc Builder 2021-01-13 17:42:22 -08:00
src Hostname to Public Key 2021-01-14 02:22:35 -08:00
tests Setup Serialization/Deserialization for Identity 2021-01-12 15:52:00 -08:00
.gitignore Add Functionality for Tor Runner / Torrc Builder 2021-01-13 17:42:22 -08:00
Cargo.toml Bump Version 2021-01-14 02:23:00 -08:00
README.md Updating README 2021-01-13 17:46:28 -08:00
rustfmt.toml Cleaning up Authentication App 2020-11-23 01:03:28 -08:00

README.md

Tapir-rs: Tiny Anonymous Peer (in Rust)

Very WIP. Currently supports authentication over Tor v3 onion services aligned with https://cwtch.im

Examples

Run an ephemeral server:

cargo run --example simple_server --features onionv3

Update examples/simple_client.rs to connect to the address generated by simple_server and then run:

cargo run --example simple_client --features onionv3

Both the server and client should authenticate each other.

Using the Library

We recommend you build with the onionv3 feature enabled (in the future Tapir may support other anonymous communication networks, but for now only Tor onion v3 services are supported).

tapir-cwtch = {version="0.1.8", features=["onionv3"]}