summaryrefslogtreecommitdiff
path: root/crates/tor-llcrypto/tests/testvec.rs
Commit message (Collapse)AuthorAgeFilesLines
* Disable clippy::unlinlined-format-argsNick Mathewson2023-01-271-0/+2
| | | | | | | | This warning kind of snuck up on us! (See #748) For now, let's disable it. (I've cleaned it up in a couple of examples, since those are meant to be more idiomatic and user-facing.) Closes #748.
* Complete our migration to base64ct.Nick Mathewson2023-01-201-3/+4
| | | | | | | | | This is in lieu of upgrading to the latest base64 crate, which has a different API from the old one. Since we have to migrate either way, we might as well use base64ct everywhere. I don't think that most of these cases _require_ constant-time base64, but it won't hurt.
* fix clippy::needless_borrowtrinity-1686a2022-09-101-3/+3
|
* Upgrade to AES 0.8Nick Mathewson2022-04-261-1/+1
| | | | | | | | Now that we require Rust 1.56, we can upgrade to AES 0.8. This forces us to have some slight API changes. We require cipher 0.4.1, not cipher 0.4.0, since 0.4.0 has compatibility issues with Rust 1.56.
* squash! Bump every crate's edition to 2021.Nick Mathewson2022-04-251-2/+0
| | | | | Remove all `use` statements for `TryFrom` and `TryInto`. These are now redundant in Rust 2021.
* Remove clippy::needless_borrow exception in CI.Nick Mathewson2022-02-201-2/+0
| | | | | This exception is no longer necessary now that the underlying CI bug is fixed.
* Temporarily disable some clippy lints on nightlyIan Jackson2022-02-021-0/+2
|
* address lint warningsDaniel Eades2021-12-091-1/+1
|
* tor-llcrypto: Put currently unused functions behind features.Nick Mathewson2021-11-121-0/+1
| | | | | | | | We don't currently need a couple of the key manipulation features that we have, since we aren't yet doing relays or onion service clients. Part of #125
* Move all crates into a `crates` subdirectory.Nick Mathewson2021-08-271-0/+574
This will cause some pain for now, but now is really the best time to do this kind of thing.