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