convert personclass writer to xml document so we can encrypt.

This commit is contained in:
Tim Young 2017-08-09 16:03:19 -05:00
parent 490a8d1b04
commit e4edd9bf5a
2 changed files with 16 additions and 12 deletions

View File

@ -182,7 +182,13 @@ namespace EduNetworkBuilder
settings.NewLineOnAttributes = true; settings.NewLineOnAttributes = true;
if (doRotation && File.Exists(filename)) if (doRotation && File.Exists(filename))
NB.MoveFileWithRotation(filename); //make a backup of the file NB.MoveFileWithRotation(filename); //make a backup of the file
XmlWriter writer = XmlWriter.Create(filename, settings);
//Generate a doc that has a writer attached. All the normal save funcs work with the writer,
//But, we can encrypt the XmlDocument
XmlDocument doc = new XmlDocument();
using (XmlWriter writer = doc.CreateNavigator().AppendChild())
{
//XmlWriter writer = XmlWriter.Create(filename, settings);
//Now we write the file: //Now we write the file:
writer.WriteStartDocument(); writer.WriteStartDocument();
@ -191,8 +197,8 @@ namespace EduNetworkBuilder
Save(writer); Save(writer);
writer.WriteEndElement(); writer.WriteEndElement();
writer.WriteEndDocument(); writer.WriteEndDocument();
writer.Flush(); }
writer.Close(); doc.Save(filename);
} }

View File

@ -140,8 +140,6 @@ namespace EduNetworkBuilder
//The decryption failed. //The decryption failed.
throw new LoginException("Key/Salt unable to decrypt."); throw new LoginException("Key/Salt unable to decrypt.");
} }
} }
protected static string GenCharString(Random RanGen, int length) protected static string GenCharString(Random RanGen, int length)