summaryrefslogtreecommitdiff
path: root/tor-cert
Commit message (Collapse)AuthorAgeFilesLines
* Add version="0.0.0" to dependencies that were missing itNick Mathewson2021-06-241-4/+4
|
* Remove "publish = false"Nick Mathewson2021-06-241-1/+0
|
* Fix some warnings about needless & from nightly clippyNick Mathewson2021-06-181-1/+1
|
* Add noop_method_call warning.Nick Mathewson2021-05-271-0/+1
| | | | | | This would have saved ahf and me a lot of confusion in debugging a situation where we were cloning a reference of a type that didn't implement Clone.
* Enable cargo_common_metadata warning.Nick Mathewson2021-05-251-0/+1
|
* Add automatically generated README.md files to each crate.Nick Mathewson2021-05-251-0/+55
|
* Add a link tto the tor website to arti blurb.Nick Mathewson2021-05-241-1/+1
|
* More module-level documentation for tor-cert and tor-protover.Nick Mathewson2021-05-231-4/+24
|
* Give every Cargo.toml a repository fieldNick Mathewson2021-05-191-0/+1
|
* Add the "unreachable_pub" lint.Nick Mathewson2021-05-181-2/+3
| | | | | | This is a somewhat obnoxious change in its scope and requirements, but it makes it easier to understand what the real public and private parts of our APIs are.
* Add trait_duplication_in_bounds warning.Nick Mathewson2021-05-031-0/+1
|
* Add unseparated_literal_suffix lint, and fix it.Nick Mathewson2021-05-031-0/+1
|
* Add a few more clippy warningsNick Mathewson2021-05-031-0/+5
|
* Add some more clippy warnings to our list.Nick Mathewson2021-04-271-1/+6
|
* Enforce (and obey) clippy lints about exhaustive enums, structs.Nick Mathewson2021-04-271-0/+4
| | | | | | | | These lints force us to declare our exported enums and exhaustive-looking structs as non-exhaustive (so that we can add to them in the future without breaking our API) or to explicitly disable the warning for a given enum/struct (to say that we _intend_ for additions to be a breaking change).
* Fix Rust-1.51 clippy warnings about acronyms in camel case.Nick Mathewson2021-03-295-19/+19
| | | | This is painful, but we shouldn't have to do it again.
* Add appropriate categories to some Cargo.toml files.Nick Mathewson2021-03-171-0/+1
|
* Add the tor project as an author.Nick Mathewson2021-03-171-1/+1
|
* Add keywords to each Cargo.tomlNick Mathewson2021-03-171-0/+1
|
* Add a description field to all our Cargo.toml filesNick Mathewson2021-03-171-0/+1
|
* Give it a homepage everyplace.Nick Mathewson2021-03-171-0/+1
|
* tor-cert: use expect() instead of unwrap()Nick Mathewson2021-03-041-2/+8
|
* Upgrade a few more dependencies.Nick Mathewson2021-01-131-1/+1
|
* Add a few more tests for tor-certs.Nick Mathewson2020-11-302-4/+101
|
* A couple more tests in tor-certNick Mathewson2020-11-252-1/+61
|
* downgrade an ok_or_else to ok_or.Nick Mathewson2020-11-191-1/+1
|
* Fix comments in tor-cert.Nick Mathewson2020-10-211-2/+5
|
* Add and use remaining CertType values in tor-certNick Mathewson2020-10-191-4/+24
|
* Resolve XXXX items in tor-cert crate.Nick Mathewson2020-10-182-2/+3
|
* Run "cargo upgrade".Nick Mathewson2020-10-151-1/+1
|
* Remove an unwrap() from tor-cert.Nick Mathewson2020-10-021-6/+6
|
* Use batch verification in client<->relay handshake.Nick Mathewson2020-10-021-0/+1
|
* tor-cert: comment out cert-generation codeNick Mathewson2020-09-281-25/+37
| | | | This won't be used until we have onion service or relay support.
* tor_cert: rename accessorsNick Mathewson2020-09-283-21/+21
|
* Tests for tor-certNick Mathewson2020-09-282-0/+101
|
* Document private members in most cratesNick Mathewson2020-09-242-0/+21
|
* Add fuzzers for certs, netdoc, and proto.Nick Mathewson2020-09-174-0/+50
| | | | This was remarkably simple.
* Pare down and sort dependenciesNick Mathewson2020-09-091-1/+2
|
* Run cargo upgrade, except for stream-cipher.Nick Mathewson2020-09-091-1/+1
|
* Also RSA identities on channel handshakesNick Mathewson2020-09-093-0/+90
| | | | | | This took a good bit of hacking, including a kludge to extract an RSA subject key from an x509 cert, since we didn't have a good way to do that.
* Implement most of client-side channel cert validation.Nick Mathewson2020-09-091-1/+7
|
* Migrate certificate and routerdesc checking to tor-checkableNick Mathewson2020-09-032-41/+140
| | | | | Now these types are parsed and returned wrapped inside a checkable object.
* Run cargo-upgrade.Nick Mathewson2020-08-281-1/+1
|
* Update to latest packages; ed25519 now needs signature crate traits.Nick Mathewson2020-07-202-1/+3
|
* Run cargo fix --edition-idiomsNick Mathewson2020-06-261-1/+1
|
* Run "cargo update".Nick Mathewson2020-06-211-1/+1
|
* Use "cargo upgrade" from cargo-edit to list current versionsNick Mathewson2020-06-121-1/+1
|
* tor_cert: use caret_int!() to make real types for cert elementsNick Mathewson2020-05-152-63/+68
|
* clean up tor-cert documentation a little.Nick Mathewson2020-05-082-22/+62
|
* Fresh git repository for work on "arti"Nick Mathewson2020-05-072-0/+373
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.