pub enum EdwardsSigningKey {
Ed25519(SigningKey),
Ed448(SigningKey),
}Expand description
An edwards curve signing key.
Variants§
Implementations§
Source§impl EdwardsSigningKey
impl EdwardsSigningKey
Sourcepub fn verifying_key(&self) -> EdwardsVerifyingKey
pub fn verifying_key(&self) -> EdwardsVerifyingKey
Get the verifying key for this signing key
Auto Trait Implementations§
impl Freeze for EdwardsSigningKey
impl RefUnwindSafe for EdwardsSigningKey
impl Send for EdwardsSigningKey
impl Sync for EdwardsSigningKey
impl Unpin for EdwardsSigningKey
impl UnwindSafe for EdwardsSigningKey
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