pub enum EdwardsKey {
Ed25519(Ed25519),
Ed448(Ed448),
}Expand description
A known Edwards key
Variants§
Trait Implementations§
Source§impl SignMessage for EdwardsKey
impl SignMessage for EdwardsKey
Source§impl ToVerifier for EdwardsKey
impl ToVerifier for EdwardsKey
Source§type Key = EdwardsKey
type Key = EdwardsKey
The verifying key
Source§fn verifying_key(&self) -> Self::Key
fn verifying_key(&self) -> Self::Key
Create a verifying key from this key.
Auto Trait Implementations§
impl Freeze for EdwardsKey
impl RefUnwindSafe for EdwardsKey
impl Send for EdwardsKey
impl Sync for EdwardsKey
impl Unpin for EdwardsKey
impl UnwindSafe for EdwardsKey
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