Corgi Engine
v9.2
|
This save load method saves and loads files as encrypted binary files More...
Public Member Functions | |
void | Save (object objectToSave, FileStream saveFile) |
Saves the specified object to disk at the specified location after encrypting it More... | |
object | Load (System.Type objectType, FileStream saveFile) |
Loads the specified file from disk, decrypts it, and deserializes it More... | |
Additional Inherited Members | |
Protected Member Functions inherited from MoreMountains.Tools.MMSaveLoadManagerEncrypter | |
virtual void | Encrypt (Stream inputStream, Stream outputStream, string sKey) |
Encrypts the specified input stream into the specified output stream using the key passed in parameters More... | |
virtual void | Decrypt (Stream inputStream, Stream outputStream, string sKey) |
Decrypts the input stream into the output stream using the key passed in parameters More... | |
Protected Attributes inherited from MoreMountains.Tools.MMSaveLoadManagerEncrypter | |
string | _saltText = "SaltTextGoesHere" |
Properties inherited from MoreMountains.Tools.MMSaveLoadManagerEncrypter | |
virtual string | Key = "yourDefaultKey" [get, set] |
The Key to use to save and load the file More... | |
This save load method saves and loads files as encrypted binary files
object MoreMountains.Tools.MMSaveLoadManagerMethodBinaryEncrypted.Load | ( | System.Type | objectType, |
FileStream | saveFile | ||
) |
Loads the specified file from disk, decrypts it, and deserializes it
objectType | |
saveFile |
Implements MoreMountains.Tools.IMMSaveLoadManagerMethod.
void MoreMountains.Tools.MMSaveLoadManagerMethodBinaryEncrypted.Save | ( | object | objectToSave, |
FileStream | saveFile | ||
) |
Saves the specified object to disk at the specified location after encrypting it
objectToSave | |
saveFile |
Implements MoreMountains.Tools.IMMSaveLoadManagerMethod.