Exemplo n.º 1
0
 public static byte[] Decrypt(byte[] inputData, AESKey key) => Decrypt(inputData, key.Key, key.IV);
Exemplo n.º 2
0
 public static byte[] Decrypt(string inputData, AESKey key) => Decrypt(inputData.GetBytes(), key);