sea*_*abr 2 php encryption node.js cryptojs
您好,我需要帮助使用 crypto 模块将我的 PHP 加密函数转换为 Nodejs:
这段代码已经可以运行了
// Constructor params
$this->algorithm = "blowfish";
$this->token = "3SzzaErRzj0#RuGr@JTkh[MO0AMIW*d!Sul/CEL!*rPnq$oOEgYaH}fNw{jw1b/DyLUdL])+JOMES@Z7MIRI>(p*nY{yl%h]4ylx";
public function decrypt($string)
{
$key = hash('sha256', $this->token);
list($encrypted_data, $iv) = explode('::', base64_decode($string), 2);
return openssl_decrypt($encrypted_data, $this->algorithm, $key, 0, $iv);
}
public function encrypt($string)
{
$output = false;
$iv = openssl_random_pseudo_bytes(openssl_cipher_iv_length($this->algorithm));
// hash
$key = hash('sha256', $this->token);
$output = openssl_encrypt($string, $this->algorithm, $key, 0, $iv);
return base64_encode($output . '::' . $iv);
}
Run Code Online (Sandbox Code Playgroud)
和nodejs中的代码,我使解密工作正常,但密码不工作
const crypto = require('crypto');
const decipher = async (alg, key, value) => {
const hash = crypto.createHash('sha256');
hash.update(key);
let token = hash.digest('hex');
let buff = new Buffer.from(value, 'base64');
let [encrypted, iv] = buff.toString('ascii').split('::', 2);
iv = new Buffer.from(iv);
const decipher = crypto.createDecipheriv(alg, token, iv);
let decrypted = await decipher.update(encrypted, 'base64', 'ascii');
decrypted += decipher.final('ascii');
return decrypted;
}
/* this one is not working */
const cipher = async (alg, key, value) => {
let iv = crypto.randomBytes(8);
var sha256 = crypto.createHash('sha256');
sha256.update(key);
var newkey = sha256.digest('base64');
var encryptor = await crypto.createCipheriv(alg, newkey, iv);
encrypted = encryptor.update(value, 'utf8', 'base64') + encryptor.final('base64');
var final = encrypted + "::" +iv;
let buf = Buffer.from(final);
let encodedData = buf.toString('base64');
return encodedData;
}
Run Code Online (Sandbox Code Playgroud)
我很感激任何帮助我完成工作的帮助
cipher
NodeJS 代码的方法中必须进行以下更改:
密钥必须采用十六进制编码:
var newkey = sha256.digest('hex');
Run Code Online (Sandbox Code Playgroud)IV 必须作为二进制字符串附加:
var final = encrypted + "::" + iv.toString('binary');
Run Code Online (Sandbox Code Playgroud)并且数据必须解析为二进制字符串:
let buf = Buffer.from(final, 'binary');
Run Code Online (Sandbox Code Playgroud)通过这些更改, NodeJS 代码中的方法与PHP 代码中的方法cipher
兼容。encrypt
该cipher
方法使用UTF8编码,该decipher
方法使用ASCII编码,因此只有ASCII编码的文本才能正确解密。要消除对 ASCII 编码的限制,需要对该decipher
方法进行以下更改:
编码为二进制字符串必须使用binary
而不是使用ascii
:
let [encrypted, iv] = buff.toString('binary').split('::', 2);
iv = new Buffer.from(iv, 'binary');
Run Code Online (Sandbox Code Playgroud)并且输出编码必须utf8
代替ascii
:
let decrypted = decipher.update(encrypted, 'base64', 'utf8');
decrypted += decipher.final('utf8');
Run Code Online (Sandbox Code Playgroud)通过这些更改,NodeJS 和 PHP 代码兼容。另请注意:
async
实际上,所应用的 NodeJS 函数都不是异步的,因此/的使用await
并不是真正必要的。 new
前面的可以Buffer.from
省略。blowfish
,对应于bf-cbc
CBC 模式下的 Blowfish。 归档时间: |
|
查看次数: |
520 次 |
最近记录: |