- Take the user password "Secret!"Secret!".
- Generate a random salt of a few bytes "s4L75a1T"s4L75a1T".
- Concat them to "s4L75a1TSecret!"s4L75a1TSecret!".
- Calculate the hash "b9797a5b683804eb195b6ba2a5e368ae74394cd3" b9797a5b683804eb195b6ba2a5e368ae74394cd3" (this is SHA-1 in hex)
- Store the hash and the salt (both as hex string, base64 Base64 string, or whatever you like) and the salt in the database together with the user name and the other user information (in the example the salt is just a plain string and the hash is Base64 encoded).
FirstName LastName Salt Hash
-----------------------------------------------------------------
John Doe s4L75a1T uXl6W2g4BOsZW2uipeNornQ5TNM=
If you want to verify the user password, just take the user name, look up the salt, do the above again and see if the calculated hash and the one in the database match. There is no (known) way to (easily) recover the password.
