Interface EnclosedSignParams

Parameters for enclosed signing operations.

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

interface EnclosedSignParams {
    data: Uint8Array;
}

Properties

Properties

data: Uint8Array

Data to be signed.