[][src]Enum yaca::Kdf

pub enum Kdf {
    X942,
    X962,
}

Enumeration of YACA key derivation functions

Variants

X942

ANSI X9.42 key derivation function, (shared secret derived using Diffie-Hellman key exchange protocol).

X962

ANSI X9.62 key derivation function, (shared secret derived using EC Diffie-Hellman key exchange protocol).

Trait Implementations

impl Debug for Kdf[src]

impl PartialEq<Kdf> for Kdf[src]

impl StructuralPartialEq for Kdf[src]

Auto Trait Implementations

impl RefUnwindSafe for Kdf

impl Send for Kdf

impl Sync for Kdf

impl Unpin for Kdf

impl UnwindSafe for Kdf

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.