bcrypt.hashSync y bcrypt.compareSync, se ejecute de manera sincrona y genera el salting automaticamente.
const rounds = 10
function hashPassword(password) {
const hash = bcrypt.hashSync(password,rounds)
return hash
}
function matchWithHash(password,hash) {
const isValidate = bcrypt.compareSync(password,hash)
return isValidate
}
¿Quieres ver más aportes, preguntas y respuestas de la comunidad?