summaryrefslogtreecommitdiff
path: root/tor-bytes/src/impls.rs
Commit message (Collapse)AuthorAgeFilesLines
* Rename Rsa{Identity,Signature} to fix clippy warning.Nick Mathewson2021-03-291-6/+6
|
* Improvements to Relay type in tor-netdir.Nick Mathewson2020-10-191-0/+12
| | | | | | | | | | | Now, a Relay is always valid. This required some changes to the API: all_relays() has to return a new UncheckedRelay type that might or might not be valid, and the functions on Relay and ChanTarget that return ed25519 identities need to return an Ed25519Identity, not an ed25519::PublicKey. This change required some new encoding/decoding/conversion functions on Ed25519Identity.
* More tests for tor_bytes::implNick Mathewson2020-09-151-1/+25
|
* tor_bytes: Remove an extraneous printlnNick Mathewson2020-09-151-4/+2
|
* bytes: add tests for impl.rsNick Mathewson2020-09-151-0/+113
|
* Implement most of client-side channel cert validation.Nick Mathewson2020-09-091-2/+4
|
* Fix clippy warnings; improve key type for consensus.Nick Mathewson2020-09-071-1/+0
|
* tor-bytes: Add initial support for the bytes crateNick Mathewson2020-09-051-0/+7
|
* Update to latest packages; ed25519 now needs signature crate traits.Nick Mathewson2020-07-201-5/+6
|
* update to use latest rust-crypto traits and modulesNick Mathewson2020-06-101-7/+6
|
* tor-bytes: add the missing documentationNick Mathewson2020-05-081-0/+12
|
* make id field in RSAIdentity privateNick Mathewson2020-05-081-5/+2
|
* Fresh git repository for work on "arti"Nick Mathewson2020-05-071-0/+253
Arti is a rust tor implementation. It's project I've been working on for a few months now, in weekends and in spare time. It doesn't speak the tor protocol yet, and it doesn't connect to the network at all. It needs much more documentation and testing, but I'm just about ready to show it to others. See the README.md for a description of what is there and what isn't.