aboutsummaryrefslogtreecommitdiff
path: root/crates/arti-relay/src/tasks/crypto.rs
Commit message (Expand)AuthorAgeFilesLines
* relay: Use mpsc_channel_no_memquota for tasks' queueDavid Goulet2026-07-281-2/+2
* relay: Adjust the try_send() error messageDavid Goulet2026-07-281-1/+4
* relay: Use warn_report on crypto task command failureDavid Goulet2026-07-281-1/+2
* relay: Add crypto task command channelDavid Goulet2026-07-281-3/+64
* relay: Pass the desc task TX to the crypto taskDavid Goulet2026-07-281-1/+15
* arti-relay: simplify tests by removing some `Arc`sSteven Engler2026-07-201-7/+5
* arti-relay: remove `Arc` from around `KeyMgr`Steven Engler2026-07-201-7/+7
* arti-relay: make `FullKeyView` generic over a `Borrow<KeyMgr>`Steven Engler2026-07-201-1/+1
* maint: Run maint/add_warning to deny string slicesClara Engler2026-06-091-0/+1
* relay: Remove docs type link that are outside scopeDavid Goulet2026-05-281-5/+5
* relay: Recompute valid_until cache in view constructorDavid Goulet2026-05-281-7/+5
* relay: Introduce src/task/crypto/keys.rsDavid Goulet2026-05-281-693/+14
* relay: Rename try_rotate_keys_no_lock()David Goulet2026-05-281-11/+14
* relay: Make FullKeyView pub(super)David Goulet2026-05-281-5/+2
* relay: Remove locking of FullKeyViewDavid Goulet2026-05-281-25/+11
* relay: Rename try_generate_keys()David Goulet2026-05-281-4/+5
* relay: Make FullKewView solely owned by the crypto taskDavid Goulet2026-05-281-10/+52
* relay: Use futures::select instead of tokioDavid Goulet2026-05-261-4/+4
* relay: Use a struct for key valid_until cacheDavid Goulet2026-05-261-9/+4
* relay: Rename crypto task reconcile() to recompute_valid_until()David Goulet2026-05-261-2/+2
* relay: .expect() on mutex lock failureDavid Goulet2026-05-261-2/+2
* relay: Small move of imports (fmt)David Goulet2026-05-261-5/+5
* relay: Crypto task now listens for new consensusDavid Goulet2026-05-261-42/+98
* relay: Add unit test for key view reconcile()David Goulet2026-05-261-1/+1
* relay: Fix unit tests after crypto task rewriteDavid Goulet2026-05-261-56/+21
* relay: Crypto task removal of get_ntor_keys()David Goulet2026-05-261-41/+2
* relay: Set the FullKeyView in InerTorRelayDavid Goulet2026-05-261-44/+17
* relay: Crypto task uses the key view reconcile()David Goulet2026-05-261-38/+28
* relay: Unify crypto task try_rotate_keys()David Goulet2026-05-261-32/+20
* relay: Spawn new crypto reactorDavid Goulet2026-05-261-45/+9
* relay: Crypto task try_generate_all is simplifiedDavid Goulet2026-05-261-28/+20
* relay: Simplify the remove expired keys processDavid Goulet2026-05-261-37/+16
* relay: Fix race between key view and keymgr updateDavid Goulet2026-05-261-1/+10
* relay: Copy try_rotate_keys() into crypto reactorDavid Goulet2026-05-261-1/+25
* relay: Implement new crypto reactor run_once()David Goulet2026-05-261-13/+53
* relay: Crypto new reactor scaffoldingDavid Goulet2026-05-261-0/+34
* relay: Add FullKeyView in the crypto task moduleDavid Goulet2026-05-261-0/+2
* relay: Modify RelayNtorKeys to use a constructorDavid Goulet2026-04-211-10/+23
* relay: Use the new RelayNtorKeys for the create handlerDavid Goulet2026-04-211-28/+27
* relay: Sort Ntor keys by valid_untilDavid Goulet2026-04-211-1/+15
* arti-relay: Use a SmallVec for the ntor keysGabriela Moldovan2026-04-091-2/+4
* proto: Add method for installing ntor keys in the create handlerGabriela Moldovan2026-04-091-1/+1
* arti-relays: Pass a CreateRequestHandler to the crypto taskGabriela Moldovan2026-04-091-0/+2
* arti-relay: Add tests for the ntor key rotationGabriela Moldovan2026-04-091-0/+53
* arti-relay: Test that 1 ntor key gets generated on first runGabriela Moldovan2026-04-091-0/+7
* arti-relay: Dedupe test helperGabriela Moldovan2026-04-091-16/+10
* arti-relays: Extend existing tests to check ntor key rotation (fmt)Gabriela Moldovan2026-04-091-1/+4
* arti-relays: Extend existing tests to check ntor key rotationGabriela Moldovan2026-04-091-2/+6
* arti-relay: Generate and rotate ntor keysGabriela Moldovan2026-04-091-10/+162
* arti-relay: Add callbacks for deciding whether to expire and generateGabriela Moldovan2026-04-091-11/+26