Answers for "bcrypt.compare(password, hash)"

2

bcrypt compare

import bcrypt from 'bcryptjs'

export const matchPassword = async (enteredpassword, oldPassword) => {
  return await bcrypt.compare(enteredpassword, oldPassword)
}
Posted by: Guest on April-12-2021
0

compare password bcrypt

//password: the value passed from the password form input
//hash: the value requested from the database. This is the "encrypted" password
	bcrypt.compare(password, hash).then(validPass => {
		// validPass returns true or false
    }).catch(err => console.log('error: ' + err));
Posted by: Guest on November-26-2021

Browse Popular Code Answers by Language