示例#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);