pub struct Keypair(_);
Available on crate feature ed25519 only.
Expand description

An Ed25519 keypair.

Implementations§

source§

impl Keypair

source

pub fn generate() -> Keypair

Generate a new random Ed25519 keypair.

source

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

👎Deprecated since 0.2.0: Renamed to Keypair::to_bytes

Encode the keypair into a byte array by concatenating the bytes of the secret scalar and the compressed public point, an informal standard for encoding Ed25519 keypairs.

source

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

Convert the keypair into a byte array by concatenating the bytes of the secret scalar and the compressed public point, an informal standard for encoding Ed25519 keypairs.

source

pub fn decode(kp: &mut [u8]) -> Result<Keypair, DecodingError>

👎Deprecated since 0.2.0: This method name does not follow Rust naming conventions, use Keypair::try_from_bytes instead.

Decode a keypair from the binary format produced by Keypair::to_bytes, zeroing the input on success.

Note that this binary format is the same as ed25519_dalek’s and ed25519_zebra’s.

source

pub fn try_from_bytes(kp: &mut [u8]) -> Result<Keypair, DecodingError>

Try to parse a keypair from the binary format produced by Keypair::to_bytes, zeroing the input on success.

Note that this binary format is the same as ed25519_dalek’s and ed25519_zebra’s.

source

pub fn sign(&self, msg: &[u8]) -> Vec<u8>

Sign a message using the private key of this keypair.

source

pub fn public(&self) -> PublicKey

Get the public key of this keypair.

source

pub fn secret(&self) -> SecretKey

Get the secret key of this keypair.

Trait Implementations§

source§

impl Clone for Keypair

source§

fn clone(&self) -> Keypair

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Keypair

source§

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

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

impl From<Keypair> for Keypair

Available on crate features ecdsa or secp256k1 or ed25519 or rsa only.
source§

fn from(kp: Keypair) -> Self

Converts to this type from the input type.
source§

impl From<Keypair> for SecretKey

Demote an Ed25519 keypair to a secret key.

source§

fn from(kp: Keypair) -> SecretKey

Converts to this type from the input type.
source§

impl From<SecretKey> for Keypair

Promote an Ed25519 secret key into a keypair.

source§

fn from(sk: SecretKey) -> Keypair

Converts to this type from the input type.
source§

impl TryInto<Keypair> for Keypair

Available on crate features ecdsa or secp256k1 or ed25519 or rsa only.
§

type Error = OtherVariantError

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

fn try_into(self) -> Result<Keypair, Self::Error>

Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V