Trait ExperimentalEncryptOutput

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

Required Methods§

Source

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

Ciphertext that was encrypted.

Source

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

Nonce that was used for encryption.

Implementors§