Skip to main content

Hkdf

Type Alias Hkdf 

Source
pub type Hkdf<H> = GenericHkdf<Hmac<H>>;
Expand description

GenericHkdf variant which uses Hmac for the underlying HMAC implementation.

Aliased Type§

pub struct Hkdf<H> {
    pub(crate) hmac: Hmac<H>,
}

Fields§

§hmac: Hmac<H>