此问题可能是由于加密和解密过程中使用的密钥不同导致的。
在Node.js中进行AES-GCM加密时,请确保在加密和解密过程中使用相同的密钥和初始化向量(IV)。
以下是Node.js中使用AES-GCM 256位加密的示例代码:
const crypto = require('crypto'); const algorithm = 'aes-256-gcm'; const key = crypto.randomBytes(32); // 32个字节(256位)的随机密钥 const iv = crypto.randomBytes(12); // 12字节的随机IV const plaintext = 'Hello, World!';
const cipher = crypto.createCipheriv(algorithm, key, iv); let encrypted = cipher.update(plaintext, 'utf8', 'hex'); encrypted += cipher.final('hex'); const tag = cipher.getAuthTag(); console.log('Encrypted: ' + encrypted); console.log('Tag: ' + tag.toString('hex'));
在Android中进行AES-GCM解密时,确保使用与Node.js中相同的密钥和初始化向量,并在解密前使用setAuthTag()方法设置16字节的认证标签,如下所示:
byte[] key = // 与Node.js中的相同 byte[] iv = // 与Node.js中的相同 byte[] cipherText = // 从Node.js中接收的密文 byte[] tag = // 从Node.js中接收的16字节的认证标签 byte[] plainText = null;
try { Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding"); SecretKeySpec keySpec = new SecretKeySpec(key, "AES"); GCMParameterSpec gcmSpec = new GCMParameterSpec(128, iv); cipher.init(Cipher.DECRYPT_MODE, keySpec, gcmSpec); cipher.updateAAD(tag); plainText = cipher.doFinal(cipherText); } catch (Exception e) { e.printStackTrace(); }
在以上示例中,我们使用SecretKeySpec和GCMParameterSpec来