Skip to content

Commit

Permalink
Merge branch 'arieteter-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
einfallstoll committed Apr 7, 2015
2 parents 6dc88bb + 5839bcb commit ec3d14b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/ASN1.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var ASN1 = {
tlv = new Buffer(1 + 3 + payload.length);
tlv.writeUInt8(dertype, 0);
tlv.writeUInt8(utils.toBinary('10000010'), 1); // Number of length bytes = 2
tlv.writeUInt16LE(payload.length, 2);
tlv.writeUInt16BE(payload.length, 2);
offset = 4;
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "express-ntlm",
"version": "2.1.2",
"version": "2.1.3",
"description": "An express middleware to have simple NTLM-authentication.",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit ec3d14b

Please sign in to comment.