Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit bcb87ca

Browse files
sebdeckersdaprahamian
authored andcommittedMay 7, 2019
fix(authentication): fix auth issue with BSON promoteBuffers: true
1 parent 1fa5763 commit bcb87ca

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎lib/auth/scram.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,8 @@ class ScramSHA extends AuthProvider {
177177
return callback(tmpError, null);
178178
}
179179

180-
const dict = parsePayload(r.payload.value());
180+
const payload = Buffer.isBuffer(r.payload) ? new Binary(r.payload) : r.payload;
181+
const dict = parsePayload(payload.value());
181182
const iterations = parseInt(dict.i, 10);
182183
const salt = dict.s;
183184
const rnonce = dict.r;
@@ -198,7 +199,7 @@ class ScramSHA extends AuthProvider {
198199

199200
const clientKey = HMAC(cryptoMethod, saltedPassword, 'Client Key');
200201
const storedKey = H(cryptoMethod, clientKey);
201-
const authMessage = [firstBare, r.payload.value().toString('base64'), withoutProof].join(',');
202+
const authMessage = [firstBare, payload.value().toString('base64'), withoutProof].join(',');
202203

203204
const clientSignature = HMAC(cryptoMethod, storedKey, authMessage);
204205
const clientProof = `p=${xor(clientKey, clientSignature)}`;

0 commit comments

Comments
 (0)
This repository has been archived.