How do I read/write an Encrypted XML file using LINQ to XML? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T22:03:08Zhttp://stackoverflow.com/feeds/question/267451http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/267451/how-do-i-read-write-an-encrypted-xml-file-using-linq-to-xml4How do I read/write an Encrypted XML file using LINQ to XML?Chris Pietschmann2008-11-06T02:08:10Z2008-11-06T05:21:38Z
<p>I would like to read/write encrypted XML files using LINQ to XML. Does anyone know how to use encryption algorithms built into the .NET Framework to encrypt the Stream used by the XDocument object?</p>
<p>I did try it, but you can't set the CryptoStream to Read/Write access. It only support Read or Write, which causes LINQ to XML to throw an exception.</p>
<p>Update: It would be nice to read/write the document "on the fly", but I am only required to read the encrypted xml file, manipulate it, then write it back out encrypted again.</p>
http://stackoverflow.com/questions/267451/how-do-i-read-write-an-encrypted-xml-file-using-linq-to-xml/267713#2677136Answer by Corbin March for How do I read/write an Encrypted XML file using LINQ to XML?Corbin March2008-11-06T05:21:26Z2008-11-06T05:21:26Z<p>The easiest approach is probably an XDocument.Load(), Linq around, then XDocument.Save(). From a quick test app (go easy on non-disposed resources):</p>
<pre><code>XDocument writeContacts = new XDocument(
new XElement("contacts",
new XElement("contact",
new XElement("name", "Patrick Hines"),
new XElement("phone", "206-555-0144",
new XAttribute("type", "home")),
new XElement("phone", "425-555-0145",
new XAttribute("type", "work")),
new XElement("address",
new XElement("street1", "123 Main St"),
new XElement("city", "Mercer Island"),
new XElement("state", "WA"),
new XElement("postal", "68042")
)
)
)
);
Rijndael RijndaelAlg = Rijndael.Create();
FileStream writeStream = File.Open("data.xml", FileMode.Create);
CryptoStream cStream = new CryptoStream(writeStream,
RijndaelAlg.CreateEncryptor(RijndaelAlg.Key, RijndaelAlg.IV),
CryptoStreamMode.Write);
StreamWriter writer = new StreamWriter(cStream);
writeContacts.Save(writer);
writer.Flush();
writer.Close();
FileStream readStream = File.OpenRead("data.xml");
cStream = new CryptoStream(readStream,
RijndaelAlg.CreateDecryptor(RijndaelAlg.Key, RijndaelAlg.IV),
CryptoStreamMode.Read);
XmlTextReader reader = new XmlTextReader(cStream);
XDocument readContacts = XDocument.Load(reader);
//manipulate with Linq and Save() when needed
</code></pre>
<p>Swap your favorite ICryptoTransform into the CryptoStream.</p>
http://stackoverflow.com/questions/267451/how-do-i-read-write-an-encrypted-xml-file-using-linq-to-xml/267714#2677140Answer by Marc Gravell for How do I read/write an Encrypted XML file using LINQ to XML?Marc Gravell2008-11-06T05:21:38Z2008-11-06T05:21:38Z<p>[update: kudos to Corbin March, who (in the same time) wrote the same, but in code!]</p>
<p>Most streams <em>are</em> one way. I imagine you'd have to:</p>
<ul>
<li>create a <code>CryptoStream</code> reading from the (file etc)</li>
<li>read the data (for example into <code>XDocument</code>)</li>
<li>do your code (read the document, make changes, etc)</li>
<li>crate a new <code>CryptoStream</code> writing to the (file etc) [starting with the same IV etc)</li>
<li>save the docuemnt to the stream</li>
</ul>
<p>Depending on what the underlying stream is (<code>FileStream</code>, <code>MemoryStream</code>, etc) you may well also have to completely close/re-open it between the read and write (i.e. the <code>CryptoStream</code> will probably feel ownership of the base-stream, and will <code>.Close()</code> it).</p>