security.PBKDF2 methods

Methods of the security.PBKDF2 class.

Table 1. Class methods
Name Description
security.PBKDF2.GenerateKey(
   password STRING,
   salt STRING,
   hash STRING,
   iter INTEGER,
   keySize INTEGER )
  RETURNS STRING
Generates a password of a given size based on a human readable password using Password-Based Key Derivation Function 2 (PBKDF2)
security.PBKDF2.CheckKey(
   password STRING,
   salt STRING,
   hash STRING,
   iter INTEGER,
   hashedkey STRING )
  RETURNS BOOLEAN
Validates a hashed key.