bcrypt .compare code example
Example 1: bcrypt compare
import bcrypt from 'bcryptjs'
export const matchPassword = async (enteredpassword, oldPassword) => {
return await bcrypt.compare(enteredpassword, oldPassword)
}
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: bcrypt compare with hash
bcrypt.compare(password, hash).then(validPass => {
}.catch(err => console.log('error: ' + err));
Example 5: bcrypt
>>> import bcrypt
>>> password = b"super secret password"
>>> # Hash a password for the first time, with a randomly-generated salt
>>> hashed = bcrypt.hashpw(password, bcrypt.gensalt())
>>> # Check that an unhashed password matches one that has previously been
>>> # hashed
>>> if bcrypt.checkpw(password, hashed):
... print("It Matches!")
... else:
... print("It Does not Match :(")