Ejemplo n.º 1
0
 /// <summary>
 /// Dumps a copy of the <see cref="pair"/>'s files in their decrypted state to the requested <see cref="path"/>.
 /// </summary>
 /// <param name="pair">Save Data to dump</param>
 /// <param name="path">Path to dump to</param>
 public static void Dump(this EncryptedFilePair pair, string path)
 {
     Dump(path, pair.Data, pair.NameData);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Loads the <see cref="pair"/>'s files in their decrypted state from the requested <see cref="path"/>.
 /// </summary>
 /// <param name="pair">Save Data to load</param>
 /// <param name="path">Path to load from</param>
 public static void Load(this EncryptedFilePair pair, string path)
 {
     Load(path, pair.Data, pair.NameData);
 }