PHP Encrypted functions and their ratings

$password = md5($password);
Security rating: 2.5/5

$password = sha1($password);
Security rating: 3.5/5

$password = hash("sha512", $password);
Security rating: 4.9/5 (for now)


Comments