http-auth
Advanced tools
Comparing version 3.2.3 to 3.2.4
{ | ||
"name": "http-auth", | ||
"description": "Node.js package for HTTP basic and digest access authentication.", | ||
"version": "3.2.3", | ||
"version": "3.2.4", | ||
"author": "Gevorg Harutyunyan (http://github.com/gevorg)", | ||
@@ -12,3 +12,3 @@ "maintainers": [ | ||
], | ||
"homepage": "http://http-auth.info", | ||
"homepage": "https://github.com/http-auth/http-auth", | ||
"repository": { | ||
@@ -40,3 +40,3 @@ "type": "git", | ||
"koa": "^1.2.0", | ||
"hapi": "^15.0.3", | ||
"hapi": "^16.1.1", | ||
"mocha": "^3.1.2", | ||
@@ -43,0 +43,0 @@ "passport": "^0.3.2", |
@@ -0,0 +0,0 @@ # http-auth |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -151,2 +151,5 @@ "use strict"; | ||
let noncesToRemove = []; | ||
// Request counter is hexadecimal. | ||
let ncNum = Number.parseInt(nc, 16); | ||
@@ -158,5 +161,5 @@ // Searching for not expired ones. | ||
if (qop) { | ||
if (nc > serverNonce[2]) { | ||
if (ncNum > serverNonce[2]) { | ||
found = true; | ||
++ serverNonce[2]; | ||
serverNonce[2] = ncNum; | ||
} | ||
@@ -199,2 +202,2 @@ } else { | ||
return new Digest(options, checker); | ||
}; | ||
}; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ "use strict"; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
655
0
33017
15