Ejemplo n.º 1
0
 public string GetData(string key)
 {
     return(EncryptionHandler.Decrypt(key, File.ReadAllBytes(Path)));
 }
Ejemplo n.º 2
0
 public void PutData(string key, string json)
 {
     File.WriteAllBytes(Path, EncryptionHandler.Encrypt(key, json));
 }