Enryption and Decryption in ASP.net

  • Thread starter balamurugan.alagumalai
  • Start date
B

balamurugan.alagumalai

How to Encrypt or Decrypt the datas in ASP.net without using Server
Memory(Memory Stream).

Thanks,
Bala.
 
V

Vadym Stetsiak

Hello, (e-mail address removed)!

The only way I can think of how not to use your application's memory is to
use SSL connection.
Server will handle all the encryption/decryption .

But if you want to protect some custom data then you'll have to do that
manually (in the code) and it will include usage of MemoryStream or alike.

--
With best regards, Vadym Stetsiak.
Blog: http://vadmyst.blogspot.com

You wrote on Wed, 23 Jan 2008 00:00:41 -0800 (PST):

ba> How to Encrypt or Decrypt the datas in ASP.net without using Server
ba> Memory(Memory Stream).

ba> Thanks,
ba> Bala.
 

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

Top