How to use the pbkdf2Async function from crypto
Find comprehensive JavaScript crypto.pbkdf2Async code examples handpicked from public code repositorys.
GitHub: FoodMob/FoodMob-Node
33 34 35 36 37 38 39 40 41 42
let locals = {}; return User.findOne({ 'email': email}).exec() .then(function (user) { locals.user = user; console.log("User Found"); return Crypto.pbkdf2Async(password, user.login.salt, 100000, 512, 'sha512'); }).then(function (hash) { if (!locals.user.login.hashed_password.equals(hash)) { console.log("Password didn't match"); return Promise.reject("Password didn't match");
1
1
3
+ 3 other calls in file
crypto.createHash is the most popular function in crypto (882 examples)