summaryrefslogtreecommitdiff
path: root/crates/arti-relay/src/keys.rs
Commit message (Collapse)AuthorAgeFilesLines
* arti-relay: Use unquoted type in keypair_specifier attrGabriela Moldovan2026-04-161-2/+2
|
* arti-relay: Remove no-longer needed implsGabriela Moldovan2026-04-011-21/+0
| | | | | The specifiers are local to the crate, so we don't need the `valid_until` accessors anymore.
* arti-relay: Make the key specifiers pub(crate)Gabriela Moldovan2026-04-011-14/+14
| | | | These no longer need to be `pub` now that they're in `arti-relay`.
* arti-relay: Move all key specifiers to a new keys moduleGabriela Moldovan2026-04-011-0/+318
This extracts the key specifier types out of `tor-relay-crypto`, which * makes the code layout consistent with the hidden service crates (the key specifiers are defined in a `keys` module in `tor-hsservice`, while the key wrapper types live in `tor-hscrypto::pk`) * helps reduce the API surface: the key specifiers are only used in `arti-relay`, so we can move them there and make them `pub(crate)` instead of `pub`