JSON在JavaScript中解密在PHP中加密

时间:2019-02-12 23:26:29

标签: javascript php aes cryptojs

我正在使用PHP加密这样的JSON文件:

0: {ID: 0, NAME: "London", REGION: "ENGLAND", …}
1: {ID: 1, NAME: "Rome", REGION: "ITALY", …}

我正在使用这个库crypt in PHP decrypt in JS AES

function cryptoJsAesEncrypt($passphrase, $value){
$salt = openssl_random_pseudo_bytes(8);
$salted = '';
$dx = '';
while (strlen($salted) < 48) {
    $dx = md5($dx.$passphrase.$salt, true);
    $salted .= $dx;
}
$key = substr($salted, 0, 32);
$iv  = substr($salted, 32,16);
$encrypted_data = openssl_encrypt(json_encode($value), 'aes-256-cbc', $key, true, $iv);
$data = array("ct" => base64_encode($encrypted_data), "iv" => bin2hex($iv), "s" => bin2hex($salt));
return json_encode($data);
}

我可以轻松地用PHP加密并使用128位密钥将其写入服务器(写入JSON文件)

$key = "TjWnZq4t7w!z%C*F";
$ForecastArray_crypt= cryptoJsAesEncrypt($key, $ForecastArray);
file_put_contents('ukforecastlist_example_crypt.json', $ForecastArray_crypt);

问题是,当我尝试通过调用在JavaScript中解密

var ukforecastlist_decrypt = JSON.parse(CryptoJS.AES.decrypt(myjson.ct, "TjWnZq4t7w!z%C*F", {format: CryptoJSAesJson}).toString(CryptoJS.enc.Utf8));

控制台返回:

Uncaught SyntaxError: Unexpected token V in JSON at position 0
at JSON.parse (<anonymous>)
at Object.parse (core_uk.js:33)
at Object._parse (aes.js:30)
at Object.decrypt (aes.js:31)
at Object.decrypt (aes.js:25)
at <anonymous>:1:54

V的确是myjson.ct的首字母。

我在做什么错?我确实使用jQuery获得了JSON,然后将其解析并存储在myjson变量中。

1 个答案:

答案 0 :(得分:0)

已解决。 我现在正在使用这个简单的PHP类:

https://github.com/henrya/projects/blob/master/JsEncode/jsencode.class.php

我可以使用以下方式在PHP中进行编码:

$json_data = json_encode($myArray);

$d = new jsEncode();

$myArray_enc = $d->encodeString($json_data,$key);

并使用以下代码在JS中解码:

var myArray_decoded = JSON.parse(jsEncode.encode(myArray_enc,key));