Type alias Pbkdf2Parameters

Pbkdf2Parameters: {
    derivedKeyLength: number;
    iterations: number;
    password: Uint8Array;
    salt: Uint8Array;
}

An object representing the parameters to use with PBKDF2 (Password-Based Key Derivation Function 2).

Type declaration

  • derivedKeyLength: number

    The length of the derived key in bytes.

  • iterations: number
  • password: Uint8Array
  • salt: Uint8Array

Generated using TypeDoc