Re: User Login and Password
Quote:
Originally Posted by Andy Tacker
you can refer to this file for some information...
I tried to use this Class but I have a logical problem:
the password in the DB should be stored in clear? I think not, but how can I store it encrypted?
Thanks for your help
Re: User Login and Password
Generaly: never store password itself, neither clear nor encrypted. Store only its hash value computed by a strong alghoritm. In login process, just compare hash of typed in password with stored hash.