pub struct SigningKey(/* private fields */);Expand description
An Ed25519 signing key.
Implementations§
Source§impl SigningKey
impl SigningKey
Sourcepub fn public(&self) -> VerifyingKey
pub fn public(&self) -> VerifyingKey
infallible public method
Trait Implementations§
Source§impl Clone for SigningKey
impl Clone for SigningKey
Source§fn clone(&self) -> SigningKey
fn clone(&self) -> SigningKey
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ConstantTimeEq for SigningKey
impl ConstantTimeEq for SigningKey
Source§impl Debug for SigningKey
impl Debug for SigningKey
Source§impl Drop for SigningKey
impl Drop for SigningKey
Source§impl Import<&[u8]> for SigningKey
impl Import<&[u8]> for SigningKey
Source§impl Random for SigningKey
impl Random for SigningKey
Source§impl SecretKey for SigningKey
impl SecretKey for SigningKey
Source§impl SigningKey<Ed25519> for SigningKey
impl SigningKey<Ed25519> for SigningKey
impl ZeroizeOnDrop for SigningKey
Auto Trait Implementations§
impl Freeze for SigningKey
impl RefUnwindSafe for SigningKey
impl Send for SigningKey
impl Sync for SigningKey
impl Unpin for SigningKey
impl UnwindSafe for SigningKey
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