Trait AeadDecryptor
crypto::aead
pub trait AeadDecryptor { fn decrypt(&mut self, input: &[u8], output: &mut [u8], tag: &[u8]) -> bool; }
fn decrypt(&mut self, input: &[u8], output: &mut [u8], tag: &[u8]) -> bool
impl AeadDecryptor for ChaCha20Poly1305
impl<'a> AeadDecryptor for AesGcm<'static>