Esempio n. 1
0
 public Boolean Save(String Path, String Key)
 {
     return(Arquivo.Gravar(Path, Cipher.Encrypt(JsonConvert.SerializeObject(this), Key)));
 }
Esempio n. 2
0
 public Root Read(String Path, String Key)
 {
     return(JsonConvert.DeserializeObject <Root>(Cipher.Decrypt(Arquivo.Ler(Path), Key)));
 }