node-password-hash icon indicating copy to clipboard operation
node-password-hash copied to clipboard

Password hashing and verification for node.js

Results 7 node-password-hash issues
Sort by recently updated
recently updated
newest added

I am using osx high sierra, and got the following error when I try to install it. ![kepernyofoto 2018-02-25 - 11 23 42](https://user-images.githubusercontent.com/28009503/36640410-5e3a20fc-1a1e-11e8-976b-d0f09f8faafe.png) Is this a problem in the password-hash...

So I built a module that uses password-hash and posted a link in reddit.com/r/node http://www.reddit.com/r/node/comments/1psqwd/loginmongo_a_simple_mongodbbased_backend_for/ and apparently that person believes that unless I use bcrypt or the like its worthless....

I'm moving to bcrypt and wondering how to migrate existing data?

I am using ubuntu 16.04 for my server. When I tried to install this package in my server. that show the error "package.json is error" I attached the error in...

``` var passwordHash = require('password-hash'); var hashedPassword = 'sha1$3I7HRwy7$cbfdac6008f9cab4083784cbd1874f76618d2a97'; console.log(passwordHash.isHashed('password123')); // false console.log(passwordHash.isHashed(hashedPassword)); // true ``` passwordHash.isHashed() will always return False?

Just auditing our software and see that we're using this library. If you mark is a deprecated in NPM users will receive a deprecation error when installing. (It will still...

I understand you've deprecated this module. I'm writing to ask if there are alternatives you consider secure that take advantage of node's built-in crypto module as a backend and do...