interface HSMSignerOptions {
    identifier: string | Buffer<ArrayBufferLike>;
    label: string;
    pin: string;
    userType?: number;
}

Properties

identifier: string | Buffer<ArrayBufferLike>

Identifier. The CKA_ID assigned to the HSM object.

label: string

The label associated with the token for the slot.

pin: string

The pin for the slot identified by the label.

userType?: number

Optional user type for the HSM. If not specified it defaults to CKU_USER.