[][src]Trait aead::NewAead

pub trait NewAead {
    type KeySize: ArrayLength<u8>;
    fn new(key: &Key<Self>) -> Self;

    fn new_varkey(key: &[u8]) -> Result<Self, Error>
    where
        Self: Sized
, { ... } }

Instantiate either a stateless Aead or stateful AeadMut algorithm.

Associated Types

type KeySize: ArrayLength<u8>

The size of the key array required by this algorithm.

Loading content...

Required methods

fn new(key: &Key<Self>) -> Self

Create a new AEAD instance with the given key.

Loading content...

Provided methods

fn new_varkey(key: &[u8]) -> Result<Self, Error> where
    Self: Sized

Create new AEAD instance from key with variable size.

Default implementation will accept only keys with length equal to KeySize.

Loading content...

Implementors

Loading content...