Struct cry::keypair::PublicKey[][src]

pub struct PublicKey<P: DisLogPoint, S: ScalarNumber> {
    pub code: Output<S>,
    pub public: Point<P>,
}

Fields

code: Output<S>public: Point<P>

Implementations

impl<P: DisLogPoint, S: ScalarNumber> PublicKey<P, S>[src]

pub fn from_keypair(keypair: &Keypair<P, S>) -> Self[src]

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

Auto Trait Implementations

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

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

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

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

impl<P, S> UnwindSafe for PublicKey<P, S> where
    P: 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, 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.