What is the best way to automate the encryption of my c#.net application configuration file without interfering with the normal operations of the application?
|
|
|
|
|
|
|
|
||
|
|
|
If you create seperate functions to encrypt and decrypt a file, as explained here, rather than trying to incorproate it into the existing routines, then you can simply call the decryption routine before loading the file (i.e. at the top of the "Load" function) and call the encryption routine after saving it (i.e. just before returning from the "Save" function). |
||
|
|
