1.0.1 • Published 8 years ago

bcryptjs-then v1.0.1

Weekly downloads
3,564
License
MIT
Repository
github
Last release
8 years ago

bcryptjs-then

NPM version Build status

bcryptjs as promised.

Installation

$ npm install bcryptjs-then

API

Implements two methods:

bcrypt.hash(password, iterations).then( hash => )

Hash a password with a # of iterations, defaulting to 10.

bcrypt.hash('password', 15).then(function (hash) {

})

bcrypt.compare(password, hash).then( valid => )

Compare a password with a bcrypt hash. Returns a boolean.

bcrypt.compare('password', user.password).then(function (valid) {
  assert(valid)
})