summaryrefslogtreecommitdiff
path: root/crates/tor-hscrypto/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
* Bump the patch version of every crate that had API additionsNick Mathewson2023-02-011-1/+1
| | | | | | These crates had API or behavior changes that may affect downstream crates. Fortunately, they're all version 0.x, and don't need minor bumps for this.
* hscrypto: Use derive_more, and derive Deref for public keys.Nick Mathewson2023-01-251-0/+1
|
* hscrypto: Implement key blinding.Nick Mathewson2023-01-241-1/+6
| | | | | This implementation was made based on the specification, and then validated against itself, and against C Tor.
* hscrypto: Add an implementation for TimePeriodNick Mathewson2023-01-241-0/+1
| | | | | This required some API tweaks, which is probably to be expected; these time periods are a wonky kind of thing.
* hscrypto: Implement hs_mac.Nick Mathewson2023-01-241-0/+2
|
* hscrypto: Add and use a macro to define all PK types.Nick Mathewson2023-01-241-1/+2
|
* Create a new tor-hscrypto crate.Nick Mathewson2023-01-061-0/+23
This module has types and operations needed in multiple places for an onion service implementation. There are a bunch of TODO hs-crypto comments that we'll need to fill in.