Пример #1
0
 public static byte[] Decrypt(byte[] inputData, AESKey key) => Decrypt(inputData, key.Key, key.IV);
Пример #2
0
 public static byte[] Decrypt(string inputData, AESKey key) => Decrypt(inputData.GetBytes(), key);