Trait DecrypterPayload

Source
pub trait DecrypterPayload {
    // Required methods
    fn salt(&self) -> &Vec<u8> ;
    fn nonce(&self) -> &Vec<u8> ;
    fn ciphertext(&self) -> &Vec<u8> ;
}

Required Methods§

Source

fn salt(&self) -> &Vec<u8>

Source

fn nonce(&self) -> &Vec<u8>

Source

fn ciphertext(&self) -> &Vec<u8>

Implementors§