bcrypt compare output code example

Example 1: bcrypt compare

import bcrypt from 'bcryptjs'

export const matchPassword = async (enteredpassword, oldPassword) => {
  return await bcrypt.compare(enteredpassword, oldPassword)
}

Example 2: bcrypt compare return false

/*
  you can skip doing bcrypt.genSalt and use 
  bcrypt.hash(password, 10, function(err, hash) {..});
  this is working fine for me:
*/

var bcrypt = require('bcrypt');

bcrypt.hash('mypassword', 10, function(err, hash) {
    if (err) { throw (err); }

    bcrypt.compare('mypassword', hash, function(err, result) {
        if (err) { throw (err); }
        console.log(result);
    });
});

Tags:

Misc Example