Trait aead::NewAead

source ·
pub trait NewAead {
    type KeySize: ArrayLength<u8>;

    // Required method
    fn new(key: &Key<Self>) -> Self;

    // Provided method
    fn new_from_slice(key: &[u8]) -> Result<Self>
       where Self: Sized { ... }
}
Expand description

Instantiate either a stateless Aead or stateful AeadMut algorithm.

Required Associated Types§

source

type KeySize: ArrayLength<u8>

The size of the key array required by this algorithm.

Required Methods§

source

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

Create a new AEAD instance with the given key.

Provided Methods§

source

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

Create new AEAD instance from key given as a byte slice..

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

Implementors§