[go: up one dir, main page]

[][src]Trait aead::NewAead

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

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

Construct a new stateful instance for the given key.

Loading content...

Implementors

Loading content...