in reply to Re: password problem with non-alphanumerics
in thread password problem with non-alphanumerics

I agree with "sporty" - although this wasn't the subject of your question, if you haven't already thought about this, you should think about encrypting your password *before* placing it in a form to be posted in a hidden field. If you are storing the user id's and passwords in a table (or file) one method would be to take the password the user entered and encrypt it, then store the encrypted password in the user table - then when the user wants to sign back in, take the password he/she enters and encrypt it, and compare that encrypted password to the encrypted password stored for that user id - if it matches, grant access.
  • Comment on Re: Re: password problem with non-alphanumerics

Replies are listed 'Best First'.
Re: Re: Re: password problem with non-alphanumerics
by exussum0 (Vicar) on May 07, 2004 at 13:54 UTC