xml encryption using C#

  • Thread starter Thread starter Duncan Winn
  • Start date Start date
Use the System.Security.Cryptography namespace and code it to either
encrypt the entire XML file and you load the file into memory and decrypt it
and parse as normal XML, or b, only encrypt the node (then the structure is
in visible sight) values then you can just read node, then decrypt.

Whatever works for you.
 
Back
Top