bcrypt-then

1.1.0 • Public • Published

bcrypt-then

NPM version Build status Test coverage Dependency Status License Downloads

bcrypt as promised.

API

Only 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)
})

Package Sidebar

Install

npm i bcrypt-then

Weekly Downloads

3

Version

1.1.0

License

MIT

Last publish

Collaborators

  • jongleberry