Function pbkdf2
PBKDF2 Implementation (described in RFC 2898)
Namespace: ICanBoogie
Source: http://www.itnewb.com/v/Encrypting-Passwords-with-PHP-for-Storage-Using-the-RSA-PBKDF2-Standard
Located at vendor/icanboogie/icanboogie/lib/helpers.php
Source: http://www.itnewb.com/v/Encrypting-Passwords-with-PHP-for-Storage-Using-the-RSA-PBKDF2-Standard
Located at vendor/icanboogie/icanboogie/lib/helpers.php
Parameters summary
string |
$p |
password |
string |
$s |
salt |
integer |
$c = 1000 |
iteration count (use 1000 or higher) |
integer |
$kl = 32 |
derived key length |
string |
$a = 'sha256' |
hash algorithm |
Return value summary
string
|
derived key |