Enum sn_api::Keypair[][src]

pub enum Keypair {
    Ed25519(Arc<Keypair>),
    BlsShare(Arc<BlsKeypairShare>),
}

Wrapper for different keypair types.

Variants

Ed25519(Arc<Keypair>)

Ed25519 keypair.

BlsShare(Arc<BlsKeypairShare>)

BLS keypair share.

Implementations

impl Keypair[src]

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

Constructs a random Ed25519 keypair.

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

Constructs a BLS keypair share.

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

Returns the public key associated with this keypair.

pub fn secret_key(&self) -> Result<SecretKey, Error>[src]

Returns the secret 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 From<SecretKey> for Keypair[src]

impl PartialEq<Keypair> for Keypair[src]

impl Serialize for Keypair[src]

impl Signing 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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument 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>,