What is password encryption on xenforo?

Status
Not open for further replies.

Silk

New member
Hello everyone.

I would like to know what is the encryption / encryption method for the password registered in the table: xf_user_authenticate

Because I see it in the core.php but I can not decrypted
if (extension_loaded('hash'))
{
$this->_hashFunc = 'sha256';
}
else
{
$this->_hashFunc = 'sha1';
}
 
Status
Not open for further replies.
Top Bottom