Pbkdf2

The PBKDF2() function creates a secure password hash for a password and a salt by using the PBKDF2 hashing algorithm with 1000 iterations.

WIKI: http://en.wikipedia.org/wiki/PBKDF2

This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.

Hashed values cannot be decoded, usually you check an incoming value against a known value that you hash yourself and check if both values are identical, to verify correctness without knowing the actual value.

Returns a text that contains a hash key of 40 characters. Returns unknown if the salt length is less than 8

Syntax

Password(password, salt)

PBKDF2("*Kky32o7","E1F53135E559C253") => "e28247b343ca7dba657a207efc4c884f582f1b92"

Parameters

NameTypeRequiredDescription

password

text

☑️

text containing a password

salt

text

☑️

a salt text. The value must be at least 8 characters long. An unknown value is returned if the length is less than 8.

Last updated