Interface KmsDeriveBitsParams

Parameters for KMS-based derivation of bits. Intended for use with a Key Management System.

interface KmsDeriveBitsParams {
    keyUri: string;
    length: number;
}

Properties

Properties

keyUri: string

Identifier for the key used in derivation in the KMS.

length: number

The number of bits to derive. To be compatible with all browsers, the number should be a multiple of 8.