aboutsummaryrefslogtreecommitdiff
path: root/crates/tor-keymgr/src/keystore/arti/certs.rs
Commit message (Collapse)AuthorAgeFilesLines
* tor-keymgr: Use ParsedEd25519Cert when decoding certs.Gabriela Moldovan2025-01-131-2/+2
| | | | | | | This helps us get rid of our uses of `KeyUnknownCert`. Needed because `KeyUnknownCert` can't readily be converted back to `EncodedEd25519Cert` (while `ParsedEd25519Cert` *can* -- see the `certs` module from `tor-relay-crypto`).
* tor-keymgr: Use Ed25519Cert::decode to parse the certs.Gabriela Moldovan2025-01-131-4/+10
|
* tor-keymgr: Add arti native keystore helper for parsing tor certs.Gabriela Moldovan2024-12-041-0/+41
We'll soon use this in `ArtiNativeKeystore`'s `Keystore` implementation for parsing certs read from disk.