Interface KeyManagerSecretsEncryptedSecret

EncryptedSecret is a secret encrypted with Deoxys-II MRAE algorithm.

interface KeyManagerSecretsEncryptedSecret {
    checksum: Uint8Array;
    ciphertexts: Map<Uint8Array, Uint8Array>;
    pub_key: Uint8Array;
}

Properties

checksum: Uint8Array

Checksum is the secret verification checksum.

ciphertexts: Map<Uint8Array, Uint8Array>

Ciphertexts is the map of REK encrypted secrets.

pub_key: Uint8Array

PubKey is the public key used to derive the symmetric key for decryption.