我需要制作一个php脚本来执行以下序列:
如果我只执行第1,2,4,5,6和7部分,它可以工作(Java解密)。如果我用随机加密文件,它根本不起作用(Java解密不起作用)密钥。
我在Php中做错了什么(比如缺少填充或其他东西)?
这是我使用的代码。我已经将第1到第3行标记为使脚本无法正常工作的行。
$data = file_get_contents('default_file.jar');
// Generate 3 AES keys
$ramdom_key_1 = randomAESKey();
$ramdom_key_2 = randomAESKey();
$ramdom_key_3 = randomAESKey();
// Encrypt three times the raw data with the user key
$data = AESEncrypt(pad($data, 16), $ramdom_key_1); // LINE 1
$data = AESEncrypt($data, $ramdom_key_2); // LINE 2
$data = AESEncrypt($data, $ramdom_key_3); // LINE 3
// Add the 3 keys to the data raw
$data .= $ramdom_key_3 . $ramdom_key_2 . $ramdom_key_1;
// Final encryption with the user's key
$data = AESEncrypt(pad($data, 16), $user_key);
// Write the raw data to an unique file
file_put_contents('new_file.jar', $data);
以下是解密文件的Java代码:
byte[] content = download(url);
content = Crypto.decrypt(content, user_key);
String content = new String(data);
String keys = content.substring(content.length() - 48, content.length());
String[] keys = new String[] { keys.substring(0, 16), keys.substring(16, 32), keys.substring(32, 48) };
byte[] cleared_content = new byte[content.length - 48];
System.arraycopy(content, 0, cleared_content, 0, content.length - 48);
// For each keys, decrypt the file data
for (String key : keys)
{
cleared_content = Crypto.decrypt(cleared_content, key.getBytes());
}
return cleared_content;
我的加密类看起来像这样(只是其中的一小部分):
public static byte[] decrypt(byte[] input)
{
try
{
SecretKeySpec skey = new SecretKeySpec(KEY.getBytes(), "AES");
Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");
cipher.init(Cipher.DECRYPT_MODE, skey);
return cipher.doFinal(input);
}
catch (Exception e) {}
return input;
}
由于密钥以desc顺序存储,我只需要像那样执行解密。
快速编辑以在php中显示我的pad功能:
function pad($data, $blocksize)
{
$pad = $blocksize - (strlen($data) % $blocksize);
return $data . str_repeat(chr($pad), $pad);
}
答案 0 :(得分:0)
问题解决了。感谢owlstead。
我改变了
$data = AESEncrypt(pad($data, 16), $ramdom_key_1); // LINE 1
$data = AESEncrypt($data, $ramdom_key_2); // LINE 2
$data = AESEncrypt($data, $ramdom_key_3); // LINE 3
到
$data = AESEncrypt(pad($data, 16), $ramdom_key_1); // LINE 1
$data = AESEncrypt(pad($data, 16), $ramdom_key_2); // LINE 2
$data = AESEncrypt(pad($data, 16), $ramdom_key_3); // LINE 3