Trait hmac::Mac [−][src]
pub trait Mac: Clone { type OutputSize: ArrayLength<u8>; fn update(&mut self, data: &[u8]); fn reset(&mut self); fn finalize(self) -> Output<Self>; fn finalize_reset(&mut self) -> Output<Self> { ... } fn verify(self, tag: &[u8]) -> Result<(), MacError> { ... } }
Expand description
The Mac
trait defines methods for a Message Authentication algorithm.
Associated Types
type OutputSize: ArrayLength<u8>
[src]
type OutputSize: ArrayLength<u8>
[src]Output size of the [Mac
]
Required methods
Provided methods
fn finalize_reset(&mut self) -> Output<Self>
[src]
fn finalize_reset(&mut self) -> Output<Self>
[src]Implementors
impl<D> Mac for Hmac<D> where
D: Update + BlockInput + FixedOutput + Reset + Default + Clone,
D::BlockSize: ArrayLength<u8>,
D::OutputSize: ArrayLength<u8>,
[src]
impl<D> Mac for Hmac<D> where
D: Update + BlockInput + FixedOutput + Reset + Default + Clone,
D::BlockSize: ArrayLength<u8>,
D::OutputSize: ArrayLength<u8>,
[src]impl Mac for Hasher
impl Mac for Hasher