当前位置: 首页 > 工具软件 > SJCL > 使用案例 >

php ic9解密_使用SJCL用Javascript加密并用PHP解密

红砚文
2023-12-01

我想用Javascript加密一些数据,并在将其发送到php服务器后将其解密.

我打算使用JS加密库作为SJCL:http://crypto.stanford.edu/sjcl/.到目前为止,我可以使用JS加密我的数据并通过ajax发布.

我的JS代码就像这样

sjcl.encrypt('a_key','secured_message');

我的问题是如何解密PHP中的数据.如果有可能,请向我展示如何使用示例代码. (注意:SSL对我来说不是一个选项,现在我计划使用KEY作为每个请求生成的随机数)

谢谢

解决方法:

PHP 7.1.0最后为iv和aad参数添加了openssl支持,但错误地强制了12字节的iv长度.

在您的示例中,我们加密如下:

var sjcl = require('./sjcl');

console.log(sjcl.encrypt('a_key', 'secured_message', { mode: 'ccm', iv: sjcl.random.randomWords(3, 0) }));

要得到:

{"iv":"YAKkgmNCcVawQtiB","v":1,"iter":10000,"ks":128,"ts":64,"mode":"ccm","adata":"","cipher":"aes","salt":"CwEDE4PXBzY=","ct":"pJ7nmnAGXiC9AD29OADlpFdFl0d/MxQ="}

因此,鉴于:

$password = 'a_key';

$input = json_decode('{"iv":"YAKkgmNCcVawQtiB","v":1,"iter":10000,"ks":128,"ts":64,"mode":"ccm","adata":"","cipher":"aes","salt":"CwEDE4PXBzY=","ct":"pJ7nmnAGXiC9AD29OADlpFdFl0d/MxQ="}', true);

我们可以在PHP 7.1.0中解密,如下所示:

$digest = hash_pbkdf2('sha256', $password, base64_decode($input['salt']), $input['iter'], 0, true);

$cipher = $input['cipher'] . '-' . $input['ks'] . '-' . $input['mode'];

$ct = substr(base64_decode($input['ct']), 0, - $input['ts'] / 8);

$tag = substr(base64_decode($input['ct']), - $input['ts'] / 8);

$iv = base64_decode($input['iv']);

$adata = $input['adata'];

$dt = openssl_decrypt($ct, $cipher, $digest, OPENSSL_RAW_DATA, $iv, $tag, $adata);

var_dump($dt);

标签:cryptography,sjcl,javascript,php

来源: https://codeday.me/bug/20191127/2076834.html

 类似资料: