Interface IEncryptedPayload

interface IEncryptedPayload {
    ciphertext: string;
    iv: string;
    mac: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

ciphertext: string

the ciphertext in base64

iv: string

the initialization vector in base64

mac: string

the HMAC in base64

Generated using TypeDoc