我试图在我的NodeJS应用程序中使用本机加密模块,但我不断收到弃用消息:
(node:26)DeprecationWarning:crypto.pbkdf2,未指定 摘要已弃用。请指定摘要
我知道这是由于期望摘要向前推进的更改集所致: https://github.com/nodejs/node/pull/4047
但是,从我所看到的情况来看,我的代码完全遵循语法as outlined in the docs。其他人看到我在这里做错了什么?
function verify (password, expected, callback) {
const combined = Buffer.from(expected, 'base64')
const saltBytes = combined.readUInt32BE(0)
const hashBytes = combined.length - saltBytes - 8
const iterations = combined.readUInt32BE(4)
const salt = combined.slice(8, saltBytes + 8)
const hash = combined.toString('binary', saltBytes + 8)
return crypto.pbkdf2(password, salt, iterations, hashBytes, 'sha512', (err, verify) => {
if (err) return callback(err, false)
return callback(null, verify.toString('binary') === hash)
})
}
注意:如果它有任何区别,则会在slim version of the node:6
内执行答案 0 :(得分:0)
他们already committed code to correct this,但尚未发布。这应该很快解决。