How to reverse hashed and salted password ?
Hashing is a one-way process. i.e. If you pass a string you get a hash which cannot be reversed., It can be used for comparison purposes.
Some of the hashing algorithms are md5()
[not considered secure] , sha-1
, sha-256
Best Hashing as of now...
Make use of crypt() coupled with some strong salt. If you have PHP 5.5 , then you can very well make use of password_hash()