summaryrefslogtreecommitdiff
path: root/tor-llcrypto/src/lib.rs
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* tor-llcrypto: finish a sentence in the docs.Nick Mathewson2021-05-241-1/+3
|
* Add a link tto the tor website to arti blurb.Nick Mathewson2021-05-241-1/+2
|
* Add tor-proto docs and tweak docs+apis elsewhere.Nick Mathewson2021-05-211-5/+5
|
* tor-llcrypto: Improve documentation and move keyblinding.Nick Mathewson2021-05-211-9/+52
|
* Add the "unreachable_pub" lint.Nick Mathewson2021-05-181-0/+1
| | | | | | 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/+3
| | | | | | | | 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).
* Document private members in most cratesNick Mathewson2020-09-241-0/+1
|
* Also RSA identities on channel handshakesNick Mathewson2020-09-091-0/+1
| | | | | | 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.
* Use links for traits in llcrypto docsNick Mathewson2020-05-081-0/+1
|
* most missing docs for llcryptoNick Mathewson2020-05-081-7/+6
|
* Stop re-exporting traits from tor-llcrypto. It does not help.Nick Mathewson2020-05-081-5/+0
|
* llcrypto: small documentation improvementsNick Mathewson2020-05-081-6/+10
|
* Fresh git repository for work on "arti"Nick Mathewson2020-05-071-0/+19
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.