aboutsummaryrefslogtreecommitdiff
path: root/crates/arti-relay/src/tasks/crypto/keys.rs
Commit message (Collapse)AuthorAgeFilesLines
* arti-relay: simplify tests by removing some `Arc`sSteven Engler2026-07-201-3/+1
|
* arti-relay: make `FullKeyView` generic over a `Borrow<KeyMgr>`Steven Engler2026-07-201-1/+2
| | | | Now it can be used with `KeyMgr` and `&KeyMgr`, not only `Arc<KeyMgr>`.
* maint: Run maint/add_warning to deny string slicesClara Engler2026-06-091-0/+1
| | | | | | | | | | | | This commit executes maint/add_warning with the just added change to deny string slices except in tests. I recommend auditing this by checking out the previous commit followed by running the script yourself and then verifying that the diff is identical to this commit. This commit makes cargo clippy fail. We will add exceptions in the next commit.
* relay: Introduce src/task/crypto/keys.rsDavid Goulet2026-05-281-0/+730
Move all key related action function to keys.rs in order to alleviate crypto.rs. The Reactor will get more functionnalities soon so cleanup. No behavior change, just code movement. Related to #2548