summaryrefslogtreecommitdiff
path: root/tor-llcrypto
Commit message (Collapse)AuthorAgeFilesLines
* Remove "publish = false"Nick Mathewson2021-06-241-1/+0
|
* Fix some warnings about needless & from nightly clippyNick Mathewson2021-06-182-2/+2
|
* 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/+62
|
* 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-219-162/+317
|
* Give every Cargo.toml a repository fieldNick Mathewson2021-05-191-0/+1
|
* Fill in "package.categories" on all Cargo.tomlNick Mathewson2021-05-191-0/+1
|
* Add the "unreachable_pub" lint.Nick Mathewson2021-05-182-1/+2
| | | | | | 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.
* Upgrade to latest RustCrypto crates.Nick Mathewson2021-05-063-6/+6
|
* Add trait_duplication_in_bounds warning.Nick Mathewson2021-05-031-0/+1
|
* Add unseparated_literal_suffix lint, and fix it.Nick Mathewson2021-05-033-2/+3
|
* 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-272-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).
* upgrade httparse and zeroizeNick Mathewson2021-04-251-1/+1
|
* upgrade dalek dependenciesNick Mathewson2021-04-141-2/+2
|
* Upgrade rsa, zstd, httpdate. Remove redundant pin-project.Nick Mathewson2021-04-051-1/+1
|
* Resolve two clippy warnings in blind_pubkey.Nick Mathewson2021-03-291-2/+2
|
* Merge remote-tracking branch 'origin/mr/23'Nick Mathewson2021-03-292-0/+108
|\
| * v3: Add two new test vectors that test key blinding clamping.George Kadianakis2021-03-301-0/+6
| |
| * v3: Improve error handling on key blinding.George Kadianakis2021-03-302-6/+23
| |
| * Implement basic ed25519 key blinding for v3 onion services.George Kadianakis2021-03-292-0/+85
| |
* | Fix Rust-1.51 clippy warnings about acronyms in camel case.Nick Mathewson2021-03-291-2/+2
| | | | | | | | This is painful, but we shouldn't have to do it again.
* | Rename Rsa{Identity,Signature} to fix clippy warning.Nick Mathewson2021-03-293-43/+43
|/
* Add a compatibility layer so we can upgrade rand_core.Nick Mathewson2021-03-185-4/+91
| | | | | | dalek-crypto is stuck on rand_core 0.5.1, so we've been stuck too. This commit introduces a compatibility module so that we can wrap new rand_core instances to make them backward compatible.
* 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
|
* Change an unwrap() in llcrypto to an expect().Nick Mathewson2021-03-161-1/+1
|
* Remove a couple of unused deps from tor-llcrypto.Nick Mathewson2021-03-101-2/+0
|
* Bump dependencies with "cargo upgrade"Nick Mathewson2021-03-061-4/+4
|
* Avoid unwrap() in llcrypto.Nick Mathewson2021-03-041-1/+1
|
* run cargo fix --edition-idiomsNick Mathewson2021-02-252-4/+4
|
* Update some dependencies.Nick Mathewson2021-02-191-1/+1
|
* upgrade a few dependenciesNick Mathewson2021-02-101-3/+3
|
* Add serde implementations for identity key types.Nick Mathewson2021-02-104-0/+150
|
* Upgrade crypto dependencies.Nick Mathewson2021-01-131-2/+2
|
* Upgrade a few more dependencies.Nick Mathewson2021-01-131-1/+1
|
* Cargo-upgrade a few dependenciesNick Mathewson2020-12-211-2/+2
|
* Make RSAIdentity implement Copy.Nick Mathewson2020-12-081-2/+1
|
* De-parameterize ChanMgr and everything that wraps it.Nick Mathewson2020-12-081-0/+1
| | | | | | | | | | | | | | This makes a whole lot of our code simpler, and makes it so that CircMgr and DirMgr no longer need to have anything parameterized over transports, either. Instead of boxing Transport inside of ChanMgr, I've made a new Connection trait that goes from a ChanTarget* straight to a Channel. This lets us avoid having to box the intermediate TLS object. [*] Actually, a copy of the information from a ChanTarget. Ick, but I had to make a copy to avoid parameterizing Connecter::build_channel.
* Run cargo fix --edition-idiomsNick Mathewson2020-12-021-2/+2
|
* Upgrade dependenciesNick Mathewson2020-11-101-4/+4
|
* upgrade a few packages.Nick Mathewson2020-11-051-1/+1
|
* Tests for tor-chanmgr.Nick Mathewson2020-10-301-0/+1
|