Encrypt Passwords (JSP + SQL + MS Access)
I tried to find some methods in order to encrypt the passwords I use via my Access database. Firstly; the facts.
Names:
String 'inlognaam' - value for login name as used in the HTML login form.
String 'pass' - value for password as used in the HTML login form.
SQL query used:
String sqlOpdracht ="Select COUNT (Voornaam) AS Aantal FROM Medewerkers WHERE Voornaam = ('"+request.getParameter("inlognaam")+"') AND Pass = ('"+request.getParameter("pass")+"')";
As I told before; I'm using JSP/SQL and MS Access.
Now I need to find a good way to encrypt my passwords. Thanks in advance!

