how to store passwords in database?
- by rgksugan
I use jsp and servlets in my web application. i need to store passwords in the database. I found that hashing will be the best way to do that.
I used this code to do it.
java.security.MessageDigest d = null;
d = java.security.MessageDigest.getInstance("SHA-1");
d.reset();
…