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

Provided methods

Implementors