Suggestions for library to hash passwords in JAVA
Posted
by DutrowLLC
on Stack Overflow
See other posts from Stack Overflow
or by DutrowLLC
Published on 2010-05-18T20:35:16Z
Indexed on
2010/05/18
20:40 UTC
Read the original article
Hit count: 263
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.
© Stack Overflow or respective owner