Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/opensource/node-http-ntlm/ntlm.js
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ function binaryArray2bytes(array){

function create_NT_hashed_password_v1(password){
var buf = new Buffer(password, 'utf16le');
var md4 = crypto.createHash('md4');
var md4 = crypto.createHash('md4'); // CodeQL [SM04514] Required by NTLM v1 specification
md4.update(buf);
return new Buffer(md4.digest());
}
Expand Down