pub trait AeadEncryptor {
    fn encrypt(&mut self, input: &[u8], output: &mut [u8], tag: &mut [u8]);
}

Required methods

Implementors