bcrypt.hash code example
Example 1: how to hash password in node js
npm i bcrypt
const bcrypt = require('bcrypt');
async function hashIt(password){
const salt = await bcrypt.genSalt(6);
const hashed = await bcrypt.hash(password, salt);
}
hashIt(password);
async function compareIt(password){
const validPassword = await bcrypt.compare(password, hashedPassword);
}
compareIt(password);
Example 2: npm bcrypt
npm install bcrypt
Example 3: bcrypt compare hash and password
var bcrypt = dcodeIO.bcrypt;
var salt = bcrypt.genSaltSync(10);
bcrypt.hash('anypassword', salt, (err, res) => {
console.log('hash', res)
hash = res
compare(hash)
});
function compare(encrypted) {
bcrypt.compare('aboveusedpassword', encrypted, (err, res) => {
console.log('Compared result', res, hash)
})
}
Example 4: $2b$10 bcrypt
const bcrypt = require("bcrypt");
const saltRounds = 10;
const plainTextPassword1 = "DFGh5546*%^__90";
bcrypt
.hash(plainTextPassword1, saltRounds)
.then(hash => {
console.log(`Hash: ${hash}`);
})
.catch(err => console.error(err.message));
Example 5: bcrypt Password Hashing
BCrypt.with(BCrypt.Version.VERSION_2Y).hashToChar(10, password.toCharArray());