Socket
Socket
Sign inDemoInstall

apache-md5

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apache-md5 - npm Package Compare versions

Comparing version 1.0.4 to 1.0.5

13

lib/apache-md5.js
// Crypto module import.
var crypto = require('crypto');
var isOldNode = process.version.indexOf("v0.") == 0;
var encoding = isOldNode ? null : 'ascii';
var MD5 = {

@@ -20,3 +23,3 @@ itoa64: './0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz',

if (inputSalt) { // Remove $apr1$ token and extract salt.
salt = inputSalt.split("$")[2];
salt = inputSalt.split('$')[2];
} else {

@@ -71,3 +74,3 @@ while(salt.length < 8) { // Random 8 chars.

var ctx = password + magic + salt;
var final = crypto.createHash('md5').update(password + salt + password).digest("binary");
var final = crypto.createHash('md5').update(password + salt + password, encoding).digest('binary');

@@ -86,3 +89,3 @@ for (var pl = password.length; pl > 0; pl -= 16) {

final = crypto.createHash('md5').update(ctx).digest("binary");
final = crypto.createHash('md5').update(ctx, encoding).digest('binary');

@@ -109,6 +112,6 @@ // 1000 loop.

// Final assignment after each loop.
final = crypto.createHash('md5').update(ctxl).digest("binary");
final = crypto.createHash('md5').update(ctxl, encoding).digest('binary');
}
return magic + salt + "$" + MD5.getPassword(final);
return magic + salt + '$' + MD5.getPassword(final);
}

@@ -115,0 +118,0 @@ };

{
"name": "apache-md5",
"description": "Node.js module for Apache style password encryption using md5.",
"version": "1.0.4",
"version": "1.0.5",
"author": "Gevorg Harutyunyan (http://github.com/gevorg)",

@@ -6,0 +6,0 @@ "maintainers": [

@@ -0,0 +0,0 @@ # apache-md5

@@ -0,0 +0,0 @@ // Apache md5.

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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