arti/crates/tor-ptmgr
Nick Mathewson 936920b26e bump rust-version to 1.60 in every crate. 2022-11-10 10:57:33 -05:00
..
examples tor-ptmgr/ipc: First cut of pluggable transport spawning 2022-10-26 16:07:30 +01:00
fuzz set all crate edition to 2021 2022-11-01 00:17:33 +01:00
src Run add_warnings. 2022-11-03 11:06:02 -04:00
Cargo.toml bump rust-version to 1.60 in every crate. 2022-11-10 10:57:33 -05:00
README.md Add the skeleton of a tor-ptmgr crate 2022-09-23 14:08:24 -04:00

README.md

tor-ptmgr

tor-ptmgr: Manage a set of anti-censorship pluggable transports.

Overview

This crate is part of Arti, a project to implement Tor in Rust.

In Tor, a "transport" is a mechanism used to avoid censorship by disguising the Tor protocol as some other kind of traffic.

A "pluggable transport" is one that is not implemented by default as part of the Tor protocol, but which can instead be added later on by the packager or the user. Pluggable transports are typically provided as external binaries that implement a SOCKS proxy, along with certain other configuration protocols.

This crate provides a means to manage a set of configured pluggable transports

Limitations

TODO pt-client: Currently, the APIs for this crate make it quite tor-specific. Notably, it can only return Channels! It would be good instead to adapt it so that it was more generally useful by other projects that want to use pluggable transports in rust. For now, I have put the Tor-channel-specific stuff behind a tor-channel-factory feature, but there are no APIs for using PTs without that feature currently. That should change.

TODO pt-client: Nothing in this crate is actually implemented yet.

TODO pt-client: The first version of this crate will probably only conform to the old Tor pluggable transport protocol, and not to more recent variants as documented at pluggabletransports.info

License: MIT OR Apache-2.0