What Java library should I be using to Hash passwords for storage in a database?
I was hoping to just take the plain text password, add a random salt, then store the salt and the hashed password in the database.
Then when a user wanted to log in, I could just take their submitted password, add the random salt from their account information, hash it and see if it equates to the stored hash password with their account information.