Possible Duplicate:
What is the most secure hashing method? (PHP)
I know that there is not a 100% secure hashing system in PHP but can you please let me now what is the best hashing available from following list or anything more in PHP ,right now?
<?php
$password = ‘SomePassword!’;
echo ‘md5: ‘ . hash(‘md5’, $password) . ‘<br />’;
echo ‘sha1: ‘ . hash(‘sha1’, $password) . ‘<br />’;
echo ‘sha512: ‘ . hash(‘sha512’, $password) . ‘<br />’;
echo ‘whirlpool: ‘ . hash(‘whirlpool’, $password) . ‘<br />’;
?>
Thanks