Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

http-auth

Package Overview
Dependencies
Maintainers
1
Versions
104
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

http-auth - npm Package Compare versions

Comparing version 3.2.3 to 3.2.4

6

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc