Trait crypto_mac::FromBlockCipher[][src]

pub trait FromBlockCipher {
    type Cipher: BlockCipher;
    fn from_cipher(cipher: Self::Cipher) -> Self;
}
This is supported on crate feature cipher only.
Expand description

Trait for MAC functions which can be created from block cipher.

Associated Types

Block cipher type

Required methods

Create new MAC isntance from provided block cipher.

Implementors