pub enum SigningKeyKind {
DsaSha1(usize),
EcDsaSha256P256(usize),
EdDsaSha512Ed25519(usize),
}Expand description
Signing key kind.
https://geti2p.net/spec/common-structures#key-certificates
Variants§
DsaSha1(usize)
DSA-SHA1.
EcDsaSha256P256(usize)
ECDSA-SHA256-P256.
EdDsaSha512Ed25519(usize)
EdDSA-SHA512-Ed25519
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SigningKeyKind
impl RefUnwindSafe for SigningKeyKind
impl Send for SigningKeyKind
impl Sync for SigningKeyKind
impl Unpin for SigningKeyKind
impl UnwindSafe for SigningKeyKind
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