[][src]Struct rcrypto::CMAC

pub struct CMAC<C> { /* fields omitted */ }

CMAC(Block Cipher-based Message Authentication Code)
SP 800-38B

Implementations

impl<C: 'static + Cipher> CMAC<C>[src]

pub fn is_support(c: &C) -> bool[src]

pub fn new(c: C) -> Result<Self, CryptoError>[src]

c must be satisfied the CMAC::is_support(&c) == true

Trait Implementations

impl<C: Cipher> Digest for CMAC<C>[src]

Auto Trait Implementations

impl<C> RefUnwindSafe for CMAC<C> where
    C: RefUnwindSafe

impl<C> Send for CMAC<C> where
    C: Send

impl<C> Sync for CMAC<C> where
    C: Sync

impl<C> Unpin for CMAC<C> where
    C: Unpin

impl<C> UnwindSafe for CMAC<C> where
    C: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.