Skip to content

Commit 7f01a67

Browse files
committed
Merge pull request #108 from felixrieseberg/bcrypt-node
Add Windows Support (bcrypt > bcrypt-node)
2 parents 6051e3a + 1cddbb0 commit 7f01a67

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crypto.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Tools for encrypting and decrypting passwords.
22
// Basically promise-friendly wrappers for bcrypt.
3-
var bcrypt = require('bcrypt');
3+
var bcrypt = require('bcrypt-nodejs');
44

55
// Returns a promise for a hashed password string.
66
function hash(password) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"license": "BSD-3-Clause",
1111
"dependencies": {
12-
"bcrypt": "~0.8",
12+
"bcrypt-nodejs": "0.0.3",
1313
"body-parser": "~1.12.4",
1414
"deepcopy": "^0.5.0",
1515
"express": "~4.2.x",

0 commit comments

Comments
 (0)