pub struct GeneratedAgentKey {
pub multikey: String,
pub public_key_spki: String,
pub key_file: String,
}Expand description
What dbmd key generate returns: the public identity to register plus
where the secret landed.
Fields§
§multikey: Stringed25519:<fingerprint> — the grantable/registerable identity.
public_key_spki: Stringbase64url SPKI DER — what a hub’s register endpoint takes.
key_file: StringWhere the PKCS#8 secret was written (mode 0600).
Trait Implementations§
Source§impl Debug for GeneratedAgentKey
impl Debug for GeneratedAgentKey
Auto Trait Implementations§
impl Freeze for GeneratedAgentKey
impl RefUnwindSafe for GeneratedAgentKey
impl Send for GeneratedAgentKey
impl Sync for GeneratedAgentKey
impl Unpin for GeneratedAgentKey
impl UnsafeUnpin for GeneratedAgentKey
impl UnwindSafe for GeneratedAgentKey
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more