$encrypted_pass = hash("sha256", $password. "randomSalt");
If not, what is a very good method to encrypt PHP passwords (without having to install additional plugins or modules, so I prefer simple methods)?
Thanks.
$encrypted_pass = hash("sha256", $password. "randomSalt");
If not, what is a very good method to encrypt PHP passwords (without having to install additional plugins or modules, so I prefer simple methods)?
Thanks.