Skip to main content

SimpleHkdf

Type Alias SimpleHkdf 

Source
pub type SimpleHkdf<H> = GenericHkdf<SimpleHmac<H>>;
Expand description

GenericHkdf variant which uses SimpleHmac for the underlying HMAC implementation.

Aliased Type§

pub struct SimpleHkdf<H> {
    pub(crate) hmac: SimpleHmac<H>,
}

Fields§

§hmac: SimpleHmac<H>