Encryption details required for decryption of a report document's contents.

Export

ReportDocumentEncryptionDetails

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

Properties

initializationVector: string

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

Memberof

ReportDocumentEncryptionDetails

key: string

The encryption key used to decrypt the document contents.

Memberof

ReportDocumentEncryptionDetails

standard: "AES"

The encryption standard required to decrypt the document contents.

Memberof

ReportDocumentEncryptionDetails