show/hide this revision's text 3 deleted 48 characters in body; added 309 characters in body

You're not actually using a salt.

Salt is a randomly generated string that is included in the input for your hash function. As such, it will be different every time.

I'm also wondering what

The idea is that you generate a salt when a user stores a password, and that this salt is included in your data storage. When authenticating, you retrieve the salt and the stored hash function is, you prefix the given password with the stored salt, and hash the two together. Then compare the result with the stored hash.

show/hide this revision's text 2 added 52 characters in body

You're not actually using a salt.

Salt is a randomly generated string that is included in the input for your hash function. As such, it will be different every time.

I'm also wondering what your hash function is.

show/hide this revision's text 1

You're not actually using a salt.

Salt is a randomly generated string that is included in the input for your hash function. As such, it will be different every time.