Skip to content

Commit d375502

Browse files
Updated bcrypt to bcrypt-nodejs
1 parent 049ea8b commit d375502

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

auth.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var sessionManager = require('ep_etherpad-lite/node/db/SessionManager');
99
var crypto = require('crypto');
1010

1111
// npm install bcrypt
12-
var bcrypt = require('bcrypt');
12+
var bcrypt = require('bcrypt-nodejs');
1313

1414
// ocrypt-relevant options
1515
var hash_typ = "sha512";
@@ -147,4 +147,4 @@ exports.handleMessage = function(hook_name, context, cb) {
147147

148148
return cb([context.message]);
149149

150-
};
150+
};

0 commit comments

Comments
 (0)