public static string Decrypt(AESEncryptedText encryptedText, string password) { return(Decrypt(encryptedText.EncryptedText, encryptedText.IV, password)); }
public static string Decrypt(AESEncryptedText encryptedText, string password) => Decrypt(encryptedText.EncryptedText, encryptedText.IV, password);