hashcat Forum

Full Version: pbkdf2 php
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I don't know which hash mode i should use,  seems it uses the php function hash_pbkdf2.
Here is my php code...
PHP Code:
public function hash_password($password)
{
return 
base64_encode(hash_pbkdf2('sha256'$password\Config::get('auth.salt'), \Config::get('auth.iterations',10000), 32true));

pbkdf2-hmac-sha256