pub trait HmacSha512: CryptoClient {
    fn hmacsha512_derive_key(
        &mut self,
        base_key: KeyId,
        message: &[u8],
        persistence: Location
    ) -> ClientResult<'_, DeriveKey, Self> { ... }
fn sign_hmacsha512<'c>(
        &'c mut self,
        key: KeyId,
        message: &[u8]
    ) -> ClientResult<'c, Sign, Self> { ... } }

Provided methods

Implementors