Encrypt Database Data

  • Thread starter Thread starter John Smith
  • Start date Start date
J

John Smith

Hello all:

Is there any way (simple hopefully) to encrypt data stored in a
database. I'm looking for something similar to PHP's MD5 functionality
(a simple function call) as I am storing passwords and would like them
to not be in plain text.

Thanks,

John
 
You could use the FormsAuthentication
"HashPasswordForStoringInConfigFile" method. It doesn't matter whether
it is a web - based application or not, the class is there to use from
any app. Aside from the unusually long descriptive method name,
it gets the job done nicely.
 
Peter said:
You could use the FormsAuthentication
"HashPasswordForStoringInConfigFile" method. It doesn't matter whether
it is a web - based application or not, the class is there to use from
any app. Aside from the unusually long descriptive method name,
it gets the job done nicely.
Great, thanks a bunch.
 

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

Back
Top