public string GetData(string key)
 {
     return(EncryptionHandler.Decrypt(key, File.ReadAllBytes(Path)));
 }
 public void PutData(string key, string json)
 {
     File.WriteAllBytes(Path, EncryptionHandler.Encrypt(key, json));
 }