我有 2 个 scripts,一个是 node.js,另外一个是 bash.sh
node.js
// Nodejs encryption with CTR
var crypto = require('crypto'),
algorithm = 'aes-256-ctr',
password = 'my_password';
function encrypt(text){
var cipher = crypto.createCipher(algorithm,password)
var crypted = cipher.update(text, 'utf8', 'hex')
crypted += cipher.final('hex');
return crypted;
}
function decrypt(text){
var decipher = crypto.createDecipher(algorithm,password)
var dec = decipher.update(text,'hex','utf8')
dec += decipher.final('utf8');
return dec;
}
var hw = encrypt("14:3b:62:6c:b5:44")
console.log(hw);
console.log(decrypt(hw));
bash script
#!/bin/bash
#
echo -n "14:3b:62:6c:b5:44" |\
openssl enc -a -e -aes-256-ctr -nosalt -pass pass:my_password |\
xxd -p
但这 2 个程序得到了不同的结果
$ node node_script.js
ecb091d31243c56f41acc18bcdab1523c7
14:3b:62:6c:b5:44
$ ./bash_script.sh
374c435230784a4478573942724d474c7a6173564938633d0a
我哪里做错了呢?谢谢
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.