How to store a password field in the SQL database?
-
Hi all: I need to make a administrator to cope with the login stuffs. Is there any good way to store the password in the database please? Thanks in advance Asura
Hey, Here are some tips for a better password management: 1-Access to the user table (at least) should be very limited! 2-Do never store passwords as they are in the database; just store their hashes (or digest) (Look for md5 and c# for example in Google) Good luck
-
Hi all: I need to make a administrator to cope with the login stuffs. Is there any good way to store the password in the database please? Thanks in advance Asura
In .NET there are 2 mechanisms to store the password in encrypted format. They are SHA Algorithm and MD5 Algorithms. You can use any one of this. It will store the password encrypted in database. It is very easy in .NET. Try that. Suseel Kumar suseel_p@rediffmail.com -- modified at 7:08 Wednesday 29th March, 2006