Decrypt Password Created By Crypto.pbkdf2 Object
I have the following code in javascript, running on NodeJs: encryptPassword: function(password) { if (!password || !this.salt) return ''; var salt = new Buffer(this.salt, '
Solution 1:
PBKDF2 is a one-way hashing algorithm. It's not possible to decrypt the generated hash. You can read more about this here.
A one way hash performs a bunch of mathematical operations that transform input into a (mostly) unique output, called a digest. Because these operations are one way, you cannot ‘decrypt’ the output- you can’t turn a digest into the original input.
If you want to use PBKDF2 to store and compare passwords, you might be interested in the pbkdf2
library. It makes generation and comparison of passwords easy:
var pbkdf2 = require('pbkdf2');
var p = 'password';
var s = pbkdf2.generateSaltSync(32);
var pwd = pbkdf2.hashSync(p, s, 1, 20, 'sha256');
varbool = pbkdf2.compareSync(pwd, p, s, 1, 20, 'sha256');
Post a Comment for "Decrypt Password Created By Crypto.pbkdf2 Object"