Struct cry::keypair::Keypair[][src]

pub struct Keypair<P: DisLogPoint, S: ScalarNumber> {
    pub seed: Output<S>,
    pub code: Output<S>,
    pub secret: Scalar<S>,
    pub public: Point<P>,
}

Fields

seed: Output<S>code: Output<S>secret: Scalar<S>public: Point<P>

Implementations

impl<P: DisLogPoint<Scalar = S>, S: ScalarNumber> Keypair<P, S>[src]

pub fn new<D: Digest>(seed: Output<S>) -> Self[src]

pub fn to_public(&self) -> PublicKey<P, S>[src]

pub fn to_bare_public(&self) -> BarePublicKey<P>[src]

pub fn derive<D: Digest>(&self, id: Output<S>) -> Self[src]

Trait Implementations

impl<P: Clone + DisLogPoint, S: Clone + ScalarNumber> Clone for Keypair<P, S>[src]

impl<P: Debug + DisLogPoint, S: Debug + ScalarNumber> Debug for Keypair<P, S>[src]

Auto Trait Implementations

impl<P, S> RefUnwindSafe for Keypair<P, S> where
    P: RefUnwindSafe,
    S: RefUnwindSafe,
    <<S as Bytes>::OutputSize as ArrayLength<u8>>::ArrayType: RefUnwindSafe

impl<P, S> Send for Keypair<P, S> where
    P: Send,
    S: Send

impl<P, S> Sync for Keypair<P, S> where
    P: Sync,
    S: Sync

impl<P, S> Unpin for Keypair<P, S> where
    P: Unpin,
    S: Unpin,
    <<S as Bytes>::OutputSize as ArrayLength<u8>>::ArrayType: Unpin

impl<P, S> UnwindSafe for Keypair<P, S> where
    P: UnwindSafe,
    S: UnwindSafe,
    <<S as Bytes>::OutputSize as ArrayLength<u8>>::ArrayType: UnwindSafe

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> 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.