Encryption

  • Thread starter Thread starter George
  • Start date Start date
G

George

Hi,

I am building application that uses MS SQL 2005 as a backend that stores
sensative data (ssn, passwords....). Are there any good articles out there
that discusses the options?

Thanks
 
Personally I'd not store password in the database at all. I tend to store
only an MD5 hash of the users password and use my application to provide the
interaction between validating the hash of the users supplied password with
the hash stored, but never the password itself.
 
Personally I'd not store password in the database at all. I tend to store
only an MD5 hash of the users password and use my application to provide
the interaction between validating the hash of the users supplied password
with the hash stored, but never the password itself.

I do exactly the same.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top