Secure data from form

  • Thread starter Thread starter michael12n
  • Start date Start date
M

michael12n

How I can secure data from form in ASP.NET send between computer and
server. I want secure it some symetric algoritm (no using SSL
protocol).
 
The down and dirty way is to set the keys on either side and use them to
encrypt and decrypt communication. If you use symetric, a single key works.
If you want asymetric, you will have to use two key pairs. This will be the
most secure, but also the most painful to set up and test.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com

*********************************************
Think outside the box!
*********************************************
 

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