Interface DeriveBitsParams

Parameters for deriving bits.

interface DeriveBitsParams {
    key: Jwk;
    length: number;
}

Properties

Properties

key: Jwk

A Jwk containing the base key to be used for derivation.

length: number

The number of bits to derive. To be compatible with all browsers, the number should be a multiple of 8.