这个异常通常发生在我们试图使用具有不同密钥或 IV (Initialization Vector)的加密器和解密器进行解密时。我们需要保证在加密和解密的过程中使用相同的密钥和 IV。下面是一个示例代码片段,说明如何在使用 AES/GCM/No Padding 加密/解密时手动指定密钥和 IV,以确保两个加密操作使用了相同的加密参数:
// 指定加密算法
String algorithm = "AES/GCM/NoPadding";
// 指定密钥
byte[] key = new byte[] { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f };
SecretKeySpec secretKeySpec = new SecretKeySpec(key, "AES");
// 指定 IV
byte[] iv = new byte[] { 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19 };
GCMParameterSpec gcmParameterSpec = new GCMParameterSpec(128, iv);
// 获取加密器
Cipher encryptCipher = Cipher.getInstance(algorithm);
encryptCipher.init(Cipher.ENCRYPT_MODE, secretKeySpec, gcmParameterSpec);
// 获取解密器
Cipher decryptCipher = Cipher.getInstance(algorithm);
decryptCipher.init(Cipher.DECRYPT_MODE, secretKeySpec, gcmParameterSpec);
// 加密
byte[] encryptedData = encryptCipher.doFinal(inputData);
// 解密
byte[] decryptedData = decryptCipher.doFinal(encryptedData);