pub enum VerifyingKey {
Rsa(RsaVerifyingKey),
Elliptic(EllipticVerifyingKey),
Edwards(EdwardsVerifyingKey),
}Expand description
Any supported verifying key.
Variants§
Rsa(RsaVerifyingKey)
An RSA key.
Elliptic(EllipticVerifyingKey)
An elliptic curve key.
Edwards(EdwardsVerifyingKey)
An Edwards curve key.
Implementations§
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