PHP different one way hashes for password security

unsughesombog

New Member
I was wondering to hash the password in PHP using different methods available and the combination of them for more and more security. I was wondering if this would work..? \[code\]$pass = "***";$salt = "!@)#%%@(#&@_!R151";$pass = sha1($pass.$salt);$pass = md5($pass);\[/code\]
 
Back
Top