Struct cry::dh::SharedKey[][src]

pub struct SharedKey<P: DisLogPoint> {
    pub key: Output<P>,
}

Fields

key: Output<P>

Implementations

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

pub fn new(sk: &Keypair<P, S>, pk: &BarePublicKey<P>) -> Self[src]

Trait Implementations

impl<P: Clone + DisLogPoint> Clone for SharedKey<P>[src]

impl<P: Debug + DisLogPoint> Debug for SharedKey<P>[src]

impl<P: Eq + DisLogPoint> Eq for SharedKey<P>[src]

impl<P: PartialEq + DisLogPoint> PartialEq<SharedKey<P>> for SharedKey<P>[src]

impl<P: DisLogPoint> StructuralEq for SharedKey<P>[src]

impl<P: DisLogPoint> StructuralPartialEq for SharedKey<P>[src]

Auto Trait Implementations

impl<P> RefUnwindSafe for SharedKey<P> where
    <<P as Bytes>::OutputSize as ArrayLength<u8>>::ArrayType: RefUnwindSafe

impl<P> Send for SharedKey<P>

impl<P> Sync for SharedKey<P>

impl<P> Unpin for SharedKey<P> where
    <<P as Bytes>::OutputSize as ArrayLength<u8>>::ArrayType: Unpin

impl<P> UnwindSafe for SharedKey<P> where
    <<P 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.