Interface PbeParams

A base structure of a parameter

interface PbeParams {
    initVector: Buffer;
    iteration: number;
    password: Buffer;
    salt: Buffer;
    type: number;
}

Hierarchy (view full)

Properties

initVector: Buffer
iteration: number
password: Buffer
salt: Buffer
type: number

Type of crypto param. Uses constants CK_PARAMS_*