pub struct Ed25519PrivKey { /* private fields */ }
Expand description

An Ed25519 private key.

An Ed25519PrivKey actually includes both the private key and the public key in order to make multiple key signing operations with the same key more efficient.

Implementations§

source§

impl Ed25519PrivKey

source

pub fn generate() -> Ed25519PrivKey

Generates a new private key.

source

pub fn from_key_pair_bytes( private: [u8; 32], public: &Ed25519PubKey ) -> Ed25519PrivKey

Constructs a new private key from a key pair.

Usually, an Ed25519 private key will be stored as a single 64-byte blob: the 32-byte private key followed by the 32-byte public key. However, we accept the two keys as separate arguments in case they are stored separately.

source

pub fn from_private_key_bytes(private: [u8; 32]) -> Ed25519PrivKey

Constructs a new private key.

Unlike from_key_pair_bytes, from_private_key_bytes reconstructs the key (which includes both the private key and the public key internally) from only the private key.

source

pub fn bytes(&self) -> &[u8; 64]

Gets the raw bytes of the private key.

Trait Implementations§

source§

impl Debug for Ed25519PrivKey

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl PrivateKey for Ed25519PrivKey

§

type Public = Ed25519PubKey

The type of the public component.
source§

fn public(&self) -> Ed25519PubKey

Gets the public key corresponding to this private key.
source§

fn sign<S: Signature<PrivateKey = Self>>( &self, message: &[u8] ) -> Result<S, Error>

Signs a message with this private key. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.