Interface KmsUnwrapKeyParams

Parameters for unwrapping a key using a KMS. Intended for use with a Key Management System.

interface KmsUnwrapKeyParams {
    unwrapAlgorithm: string;
    unwrappingKeyId: string;
    wrappedKey: Uint8Array;
}

Properties

unwrapAlgorithm: string

Algorithm to be used for unwrapping.

unwrappingKeyId: string

Identifier for the private key in the KMS to be used for the unwrapping operation.

wrappedKey: Uint8Array

The wrapped key in a byte array.