bcrypt name code example
Example 1: bcrypt Password Hashing
BCrypt.with(BCrypt.Version.VERSION_2Y).hashToChar(10, password.toCharArray());
Example 2: $2b$10 bcrypt
// app.js
const bcrypt = require("bcrypt");
const saltRounds = 10;
const plainTextPassword1 = "DFGh5546*%^__90";
bcrypt
.genSalt(saltRounds)
.then(salt => {
console.log(`Salt: ${salt}`);
return bcrypt.hash(plainTextPassword1, salt);
})
.then(hash => {
console.log(`Hash: ${hash}`);
// Store hash in your password DB.
})
.catch(err => console.error(err.message));