Interface EnclosedVerifyParams

Parameters for enclosed verification operations.

Note: This interface is intended to be used with a closure that captures the key and algorithm-specific parameters so that signatures of arbitrary data can be verified without exposing the key or parameters to the caller.

interface EnclosedVerifyParams {
    data: Uint8Array;
    signature: Uint8Array;
}

Properties

Properties

data: Uint8Array

Data associated with the signature.

signature: Uint8Array

Signature to be verified.