[][src]Struct crypto_api::mac::MacInfo

pub struct MacInfo {
    pub name: &'static str,
    pub is_otm: bool,
    pub mac_len: usize,
    pub mac_len_r: Range<usize>,
    pub key_len_r: Range<usize>,
}

Information about a MAC implementation

Fields

name: &'static str

The name

is_otm: bool

Indicates if this MAC is a one time MAC (= requires a unique key for each message)

mac_len: usize

The default/selected MAC length

mac_len_r: Range<usize>

The supported MAC lengths

key_len_r: Range<usize>

The supported key lengths

Trait Implementations

impl PartialEq<MacInfo> for MacInfo[src]

impl Clone for MacInfo[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for MacInfo[src]

impl Debug for MacInfo[src]

Auto Trait Implementations

impl Send for MacInfo

impl Sync for MacInfo

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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