Please note, this is a STATIC archive of website hashcat.net from 08 Oct 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.

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