bcrypt-password
v2.0.0
Published
bcrypt password hash and check functions
Readme
bcrypt-password.js
Convenience package exporting password hashing and checking functions recommended by bcrypt.
var password = require('bcrypt-password')
var secret = 'open sesame'
password.hash(secret, function (error, digest) {
password.check(secret, digest, function (error, match) {
// ...
})
})