show/hide this revision's text 3 added 5 characters in body
  • 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.

show/hide this revision's text 2 added 18 characters in body
  • Take the user password "Secret!"
  • Generate a random salt of a few bytes "yf%44§."s4L75a1T"
  • Concat them to "yf%44§.Secret!"s4L75a1TSecret!"
  • Calculate the hash "55848f83555a5305d1924e7981f2a0dfc4310387261210091224d9cfd937f028" b9797a5b683804eb195b6ba2a5e368ae74394cd3" (this is SHA-256 in hex notationSHA-1)
  • Store the hash (as hex string, base64 string, or whatever you like) and the salt in the database together with the user name and the other user information

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.

show/hide this revision's text 1
  • Take the user password "Secret!"
  • Generate a random salt of a few bytes "yf%44§."
  • Concat them to "yf%44§.Secret!"
  • Calculate the hash "55848f83555a5305d1924e7981f2a0dfc4310387261210091224d9cfd937f028" (this is SHA-256 in hex notation)
  • Store the hash (as hex string, base64 string, or whatever you like) and the salt in the database together with the user name and the other user information

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.