summaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
...
* | tor-keymgr: Mention KeyMgr::describe in the KeyInfoExtractor docs.Gabriela Moldovan2023-12-051-0/+3
| |
* | tor-keymgr: Remove outdated references to KeyDenotator.Gabriela Moldovan2023-12-051-6/+6
| |
* | tor-keymgr: Explain when KeySpecifierComponent should be implemented.Gabriela Moldovan2023-12-051-0/+6
| |
* | tor-keymgr: Abolish the KeyDenotator trait in favour of KeyPathComponent (fmt).Gabriela Moldovan2023-12-053-9/+19
| |
* | tor-keymgr: Abolish the KeyDenotator trait in favour of KeyPathComponent.Gabriela Moldovan2023-12-053-68/+29
| |
* | tor-keymgr: Use Bug instead of KeyPathInfoBuild.Gabriela Moldovan2023-12-051-6/+5
| |
* | tor-keymgr: Describe the key, not the specifier in the test key summaries.Gabriela Moldovan2023-12-051-5/+5
| |
* | tor-keymgr: Add some helpers to KeyPathInfoBuilder.Gabriela Moldovan2023-12-051-1/+84
| |
* | tor-keymgr: Use a BTreeMap for the extra_info.Gabriela Moldovan2023-12-051-2/+2
| | | | | | | | We probably want these values to be in the same order each time.
* | tor-hsservice: Stop the KeystoreSweeper task when the service exits (fmt).Gabriela Moldovan2023-12-053-57/+62
| |
* | tor-hsservice: Stop the KeystoreSweeper task when the service exits.Gabriela Moldovan2023-12-052-7/+30
| |
* | tor-hsservice: Make shutdown a broadcast channel.Gabriela Moldovan2023-12-052-11/+13
| | | | | | | | | | We will soon need another component to be able to subscribe to the shutdown signal.
* | tor-hsservice: Move remove_if_expired macro inside task (fmt).Gabriela Moldovan2023-12-051-9/+3
| |
* | tor-hsservice: Move remove_if_expired macro inside task.Gabriela Moldovan2023-12-051-37/+22
| |
* | tor-keymgr: Add TODO about allowing users to specify the spec_name.Gabriela Moldovan2023-12-051-2/+1
| | | | | | | | This also removes a TODO that doesn't make sense anymore.
* | tor-keymgr: Update key summary strings to be less verbose.Gabriela Moldovan2023-12-051-5/+5
| |
* | tor-keymgr: Update summary docs based on review.Gabriela Moldovan2023-12-051-1/+3
| |
* | tor-keymgr: Add a cross-reference to register_key_info_extractor.Gabriela Moldovan2023-12-051-0/+4
| |
* | tor-keymgr: s/register_key_validator/register_key_info_extractorGabriela Moldovan2023-12-051-1/+1
| |
* | tor-keymgr: Test the derived TryFrom<&KeyPath> key specifier impl.Gabriela Moldovan2023-12-051-9/+19
| |
* | tor-hsservice: Test the TryFrom<&KeyPath> KeySpecifier impl.Gabriela Moldovan2023-12-054-4/+12
| |
* | tor-keymgr: Add a module for test utilities.Gabriela Moldovan2023-12-053-0/+16
| |
* | tor-hsservice: Add some useful derives for the key specifiers.Gabriela Moldovan2023-12-051-5/+5
| |
* | tor-hsservice: Add a helper for removing expired keys.Gabriela Moldovan2023-12-052-3/+154
| | | | | | | | Closes #1043
* | tor-hsservice: Make the KeySpecifier fields crate-public.Gabriela Moldovan2023-12-051-7/+7
| | | | | | | | We're about to use them.
* | tor-keymgr: Add KeyMgr::remove_with_type.Gabriela Moldovan2023-12-051-0/+18
| | | | | | | | | | Sometimes we need to remove a key without knowing its concrete (Rust) type (only its `KeySpecifier` and `KeyType`).
* | tor-keymgr: Make DefaultKeySpecifier generate a key info extractor as well.Gabriela Moldovan2023-12-053-1/+118
| |
* | tor-keymgr: Use KeySpecifierComponent instead of Display.Gabriela Moldovan2023-12-051-1/+14
| |
* | tor-keymgr: Store an owned type instead.Gabriela Moldovan2023-12-056-43/+52
| | | | | | | | | | | | We need this because the key specifier types will soon be owned types too (they will soon grow a From<&KeyPath> impl). We _could_ make them store `Cow`s instead, but I think that's a premature optimization.
* | tor-keymgr: Add more variants to KeyPathError.Gabriela Moldovan2023-12-051-0/+13
| | | | | | | | We will need them soon.
* | tor-keymgr: Make all arguments of arti_pattern optional.Gabriela Moldovan2023-12-052-9/+13
| | | | | | | | | | We're going to need this soon (to match all hidden service keys, regardless of nickname, for example).
* | tor-keymgr: Introduce a KeySpecifierComponent trait.Gabriela Moldovan2023-12-053-2/+35
| | | | | | | | | | | | | | | | | | Now the fields of a `DefaultKeySpecifier` no longer have to implement `Display` (they need to implement `KeySpecifierComponent`). See https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/1733#note_2966400 Closes #1127
* | tor-keymgr: Add a function for describing a KeyPath.Gabriela Moldovan2023-12-052-2/+24
| |
* | tor-keymgr: Add a way of registering key info extractors using inventory.Gabriela Moldovan2023-12-054-4/+36
| |
* | tor-keymgr: Add types for extracting info out of a KeyPath.Gabriela Moldovan2023-12-052-2/+28
| |
* | tor-keymgr: Change KeyDenotator error type to KeyPathError.Gabriela Moldovan2023-12-054-12/+23
|/ | | | | This is a separate class of errors that deserves its own error type. We will soon use `KeyPathError` in other contexts as well.
* Merge branch 'msrv-followup' into 'main'Nick Mathewson2023-12-049-42/+11
|\ | | | | | | | | Followups from MSRV 1.70 upgrade See merge request tpo/core/arti!1785
| * arti: rewrite ilog10_roundup using checked_ilog10.Nick Mathewson2023-11-301-16/+4
| |
| * tor-config: use black_box in test.Nick Mathewson2023-11-301-3/+1
| |
| * guardmgr: Stop using now-needless retain_mut crate.Nick Mathewson2023-11-303-12/+4
| |
| * rtmock: Remove now-needless to_string calls.Nick Mathewson2023-11-301-4/+0
| |
| * netdoc: Remove an "unknown_lints" exception.Nick Mathewson2023-11-301-1/+0
| |
| * llcrypto: Use up-to-date name for a clippy lint.Nick Mathewson2023-11-301-2/+1
| |
| * netdoc: refactor to use a let-else.Nick Mathewson2023-11-301-4/+1
| |
* | tor-hsservice: IptKeySpecifier: add a TODO HSSIan Jackson2023-12-041-0/+2
| |
* | tor-hsservice: ipt_set: Remove a blocking TODOIan Jackson2023-12-041-1/+0
| | | | | | | | This function became non-dead in some earlier commit.
* | tor-hsservice tests: Add some TODOs re IPT accepting stateIan Jackson2023-12-041-0/+8
| |
* | tor-hsservice tests: Check that restart gives us the same IPTs (fmt)Ian Jackson2023-12-041-11/+18
| | | | | | | | Mandatory formatting degradation.
* | tor-hsservice tests: Check that restart gives us the same IPTsIan Jackson2023-12-041-2/+24
| | | | | | | | | | | | Store the IptParameters in the MockEstabState, and provide a function to list what the IPTs are. Then we can check the IPTs are reloaded and restored after restart.
* | tor-hsservice tests: Test restarting the IPT managerIan Jackson2023-12-041-0/+9
| | | | | | | | | | This is supposed to reload the state. In the next commit we'll check at least some of the things.