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