To improve the security for my users I wish to hide all user-passwords in my MSSQL database.
The webapplication is in ASP Classic and the SQL-field is a varchar(max).
I have heard about hashing the codes, but how does this work?
Is it something to be done in the SQL string or making an ASP function?
My current users tabel setup are:
id username password
1 jersey plaintextpassword
2 timber plaintextpassword
....
i prefer to store user password as with md5
save passwords after md5sum
when user trying to login
user variables from form
for example
table with md5
more secure way