pub enum VerifyingKey {
Elliptic(EllipticKey),
Edwards(EdwardsKey),
Rsa(RsaKey),
}Expand description
A known signing key
Variants§
Trait Implementations§
Source§impl FromDer for VerifyingKey
impl FromDer for VerifyingKey
Source§impl VerifySignature for VerifyingKey
impl VerifySignature for VerifyingKey
Auto Trait Implementations§
impl Freeze for VerifyingKey
impl RefUnwindSafe for VerifyingKey
impl Send for VerifyingKey
impl Sync for VerifyingKey
impl Unpin for VerifyingKey
impl UnwindSafe for VerifyingKey
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