kernel::hil::digest

Trait HmacSha384

Source
pub trait HmacSha384 {
    // Required method
    fn set_mode_hmacsha384(&self, key: &[u8]) -> Result<(), ErrorCode>;
}

Required Methods§

Source

fn set_mode_hmacsha384(&self, key: &[u8]) -> Result<(), ErrorCode>

Call before adding data to perform HMACSha384

The key used for the HMAC is passed to this function.

Implementors§