Hello,
I'm resetting my hotel and I want to encrypt passwords differently. I want to use a more secure one, such as bcrypt.
By default, rev uses md5.
PHP Code:final public function hashed($password)
{
return md5($password);
}
I want to use a more secure method, such as bcrypt, how would I go about doing this?


Reply With Quote


