[][src]Struct crypto_api::cipher::CipherInfo

pub struct CipherInfo {
    pub name: &'static str,
    pub is_otc: bool,
    pub key_len_r: Range<usize>,
    pub nonce_len_r: Range<usize>,
    pub aead_tag_len_r: Range<usize>,
}

Information about a cipher implementation

Fields

name: &'static str

The name

is_otc: bool

Indicates if this cipher is a one time cipher (= requires a unique key/nonce combination for each message)

key_len_r: Range<usize>

The supported key lengths

nonce_len_r: Range<usize>

The supported nonce lengths

aead_tag_len_r: Range<usize>

The supported AEAD tag lengths (is 0..0 if the cipher is not an AEAD cipher)

Trait Implementations

impl PartialEq<CipherInfo> for CipherInfo[src]

impl Clone for CipherInfo[src]

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

Performs copy-assignment from source. Read more

impl Eq for CipherInfo[src]

impl Debug for CipherInfo[src]

Auto Trait Implementations

impl Send for CipherInfo

impl Sync for CipherInfo

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]