We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96a8bbb commit 39ea394Copy full SHA for 39ea394
api/opensource/node-http-ntlm/ntlm.js
@@ -338,7 +338,7 @@ function binaryArray2bytes(array){
338
339
function create_NT_hashed_password_v1(password){
340
var buf = new Buffer(password, 'utf16le');
341
- var md4 = crypto.createHash('md4');
+ var md4 = crypto.createHash('md4'); // CodeQL [SM04514] Required by NTLM v1 specification
342
md4.update(buf);
343
return new Buffer(md4.digest());
344
}
0 commit comments