Encryption details for required client-side encryption and decryption of document contents.

Export

EncryptionDetails

interface EncryptionDetails {
    initializationVector: string;
    key: string;
    standard: "AES";
}

Properties

initializationVector: string

The vector to encrypt or decrypt the document contents using Cipher Block Chaining (CBC).

Memberof

EncryptionDetails

key: string

The encryption key used to encrypt or decrypt the document contents.

Memberof

EncryptionDetails

standard: "AES"

The encryption standard required to encrypt or decrypt the document contents.

Memberof

EncryptionDetails