Exemplo n.º 1
0
 public static string Decrypt(AESEncryptedText encryptedText, string password)
 {
     return(Decrypt(encryptedText.EncryptedText, encryptedText.IV, password));
 }
Exemplo n.º 2
0
 public static string Decrypt(AESEncryptedText encryptedText, string password)
 => Decrypt(encryptedText.EncryptedText, encryptedText.IV, password);