Type Alias EncryptedDocument

Source
pub type EncryptedDocument = AESEncrypted<DecryptedDocument>;

Aliased Type§

pub struct EncryptedDocument {
    pub value: Vec<u8>,
    pub nonce: Vec<u8>,
    pub _t: PhantomData<Vec<u8>>,
}

Fields§

§value: Vec<u8>§nonce: Vec<u8>§_t: PhantomData<Vec<u8>>