[][src]Enum sn_data_types::Keypair

pub enum Keypair {
    Ed25519(Keypair),
    Bls(BlsKeypair),
    BlsShare(BlsKeypairShare),
}

Wrapper for different keypair types.

Variants

Ed25519(Keypair)

Ed25519 keypair.

BLS keypair.

BlsShare(BlsKeypairShare)

BLS keypair share.

Implementations

impl Keypair[src]

pub fn new_ed25519<T: CryptoRng + Rng>(rng: &mut T) -> Self[src]

Constructs a random Ed25519 public keypair.

pub fn new_bls<T: CryptoRng + Rng>(rng: &mut T) -> Self[src]

Constructs a random BLS public keypair.

pub fn new_bls_share(
    index: usize,
    secret_share: SecretKeyShare,
    public_key_set: PublicKeySet
) -> Self
[src]

Constructs a BLS public keypair share.

pub fn public_key(&self) -> PublicKey[src]

Returns the public key associated with this keypair.

pub fn sign(&self, data: &[u8]) -> Signature[src]

Signs with the underlying keypair.

Trait Implementations

impl Clone for Keypair[src]

impl Debug for Keypair[src]

impl<'de> Deserialize<'de> for Keypair[src]

impl Eq for Keypair[src]

impl<'_> From<&'_ Keypair> for PublicKey[src]

impl PartialEq<Keypair> for Keypair[src]

impl Serialize for Keypair[src]

Auto Trait Implementations

impl RefUnwindSafe for Keypair

impl Send for Keypair

impl Sync for Keypair

impl Unpin for Keypair

impl UnwindSafe for Keypair

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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