encrypt decrypt xml

  • Thread starter Thread starter Rob Blij
  • Start date Start date
R

Rob Blij

I am wanting to encrypt an appsettings xml file (as text in a text file
whatever) and decrypt it in my application.

I know the cryptography namespace is lacking and MD5 wont work. Does anyone
have a good solution for this?

tia
Rob
 
MD5 is used for hashing a value (like SHA1).
it wont work for encrypt/decrypt scenarios

TripleDES or Rijndeal/AES is the way to go for symmetric,
or RSA for public/private

Thanks,
casey
http://www.brains-n-brawn.com
 
Thats true. I should have read the post more carefully. I saw the MD5 and
thought that is what they wanted to use.

Take care
Tom
 

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