我必须使用PHP中的给定密钥加密一个字符串。
在Java中,我已经有两种方法可以解密和加密。
这是我的Java加密方法:
public static String encriptB64Aes(String value, String aesKey) {
String result = null;
try {
Cipher encryptCipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
//in PHP !?
SecretKey secretKey = new SecretKeySpec(aesKey.getBytes("UTF-8"), "AES");
IvParameterSpec ivParameterSpec = new IvParameterSpec(secretKey.getEncoded());
encryptCipher.init(Cipher.ENCRYPT_MODE, secretKey, ivParameterSpec);
// Encrypt
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
CipherOutputStream cipherOutputStream = new CipherOutputStream(outputStream, encryptCipher);
cipherOutputStream.write(value.getBytes());
cipherOutputStream.flush();
cipherOutputStream.close();
byte[] encryptedBytes = outputStream.toByteArray();
result = encodeBase64(encryptedBytes);
} catch (NoSuchAlgorithmException | NoSuchPaddingException e) {
e.printStackTrace();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (InvalidKeyException e) {
e.printStackTrace();
} catch (InvalidAlgorithmParameterException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return result;
}
我需要使用mcrypt_module_open在PHP代码中使用上述方法。
我尝试过这样的方法,但我不知道如何计算上面的$ iv
function encrypt($str, $key) {
$str = pkcs5_pad($str);
$iv = ????;
$td = mcrypt_module_open('rijndael-128', '', 'cbc', '');
mcrypt_generic_init($td, $key, $iv);
$encrypted = mcrypt_generic($td, $str);
mcrypt_generic_deinit($td);
mcrypt_module_close($td);
return base64_encode($encrypted);
}
function pkcs5_pad ($text) {
$blocksize = 16;
$pad = $blocksize - (strlen($text) % $blocksize);
return $text . str_repeat(chr($pad), $pad);
}
我非常感谢你能给我的任何帮助。
由于
答案 0 :(得分:0)
在Java代码中,AES密钥用作IV。分别使用AES密钥对第一块明文数据进行异或,该密钥在加密之后使用。 .getEncoded()方法只返回SecretKey的byte []表示。在你的情况下IV = $ key
WBR, 法学