[][src]Struct win_crypto_ng::asymmetric::Dh

pub struct Dh;

Marker type representing the DH (Diffie-Hellman) algorithm.

Trait Implementations

impl Algorithm for Dh[src]

impl<'a> Export<Dh, Private> for AsymmetricKey<Dh, Private>[src]

type Blob = DhKeyPrivateBlob

impl<'a> Export<Dh, Public> for AsymmetricKey<Dh, Public>[src]

type Blob = DhKeyPublicBlob

impl<'a> Import<'a, Dh, Private> for AsymmetricKey<Dh, Private>[src]

type Blob = &'a Blob<DhKeyPrivateBlob>

impl<'a> Import<'a, Dh, Public> for AsymmetricKey<Dh, Public>[src]

type Blob = &'a Blob<DhKeyPublicBlob>

impl NeedsKeySize for Dh[src]

Auto Trait Implementations

impl RefUnwindSafe for Dh

impl Send for Dh

impl Sync for Dh

impl Unpin for Dh

impl UnwindSafe for Dh

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