Trait kernel::hil::digest::HmacSha512

source ·
pub trait HmacSha512 {
    // Required method
    fn set_mode_hmacsha512(&self, key: &[u8]) -> Result<(), ErrorCode>;
}

Required Methods§

source

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

Call before adding data to perform HMACSha512

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

Implementors§