Parameters for verifying a signature using a key from a KMS. Intended for use with a Key Management System.

interface KmsVerifyParams {
    data: Uint8Array;
    key: Jwk;
    signature: Uint8Array;
}

Properties

Properties

data: Uint8Array

The data associated with the signature.

key: Jwk

A Jwk containing the public key to be used for verification.

signature: Uint8Array

The signature to verify.