Type Alias lb_rs::shared::crypto::EncryptedDocument

source ·
pub type EncryptedDocument = AESEncrypted<DecryptedDocument>;

Aliased Type§

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>>