http-auth
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -98,4 +98,4 @@ /** | ||
// Username is correct. | ||
if(userHash) { | ||
var ha1 = util.md5(userHash); | ||
if(userHash && typeof userHash === 'string') { | ||
var ha1 = util.md5(this.users[co.username]); | ||
@@ -102,0 +102,0 @@ // If algorithm is MD5-sess. |
{ | ||
"name": "http-auth", | ||
"description": "Node.js module for HTTP basic and digest access authentication.", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"author": "Gevorg Harutyunyan", | ||
@@ -6,0 +6,0 @@ "maintainers": [ |
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
20597