我需要在我的 Java 客户端应用程序和 PHP 服务器之间进行基本/简单的字符串加密(即低安全性就足够了,我只是想避免通信是人类可读的)。
因此,我选择了对称 DES 加密,因为它不需要任何密钥交换(客户端和服务器上将使用相同的密钥)+ 它不需要为更长的密钥更新 Java 安全策略。当数据通过 Http 帖子发送时,我还对 Base64 进行编码/解码。
不幸的是,我的代码不起作用,因为解密的文本与输入不匹配。
我要加密的 Java 代码:
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");
DESKeySpec keySpecEncrypt = new DESKeySpec(ParamsProvider.SERVER_ECRYPTION_SECRETKEY2); //Secret key is a byte[8] = {1, 2, 3, 4, 5, 6, 7, 8}
SecretKey keyEncrypt = keyFactory.generateSecret(keySpecEncrypt);
// Create the cipher
Cipher desCipher = Cipher.getInstance("DES/CFB8/NoPadding");
// Initialize the cipher for encryption
desCipher.init(Cipher.ENCRYPT_MODE, keyEncrypt);
// Encrypt the text
byte[] textEncrypted = desCipher.doFinal(data.getBytes("UTF-8"));
//B64 encoding and return
byte[] encryptedB64ByteArray = (new org.apache.commons.codec.binary.Base64()).encode(textEncrypted);
return new String(encryptedB64ByteArray, "UTF8");
我要解密的 PHP 代码:
function decrypt($message) {
$secret_key = array(1, 2, 3, 4, 5, 6, 7, 8);
$decodedMsg = base64_decode($message);
return base64_decode(mcrypt_decrypt(MCRYPT_DES, $key, $decodedMsg, MCRYPT_MODE_CFB));
}
我最好的猜测是我的 Java 和 PHP 加密/解密参数不相等(例如 CFB8 模式),但我不知道如何解决这个问题。
任何帮助或提示将不胜感激(我已经为此浪费了几个小时),干杯,托马斯