New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

keyhasher

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

keyhasher - npm Package Compare versions

Comparing version 1.2.4 to 1.2.5

algos/allAlgo.js

4

encrypthashop.js

@@ -5,3 +5,3 @@ var {moreSalting} = require('./algos/somersault')

const input = string;
var salt = parseInt(pass);
var salt = parseInt(pass) + process.env.SECRET;

@@ -35,3 +35,3 @@ var extraSalt = moreSalting(salt);

const inputRev = string;
var saltRev = parseInt(pass);
var saltRev = parseInt(pass) - process.env.SECRET;

@@ -38,0 +38,0 @@ var extraSaltRev = moreSalting(saltRev);

{
"name": "keyhasher",
"version": "1.2.4",
"version": "1.2.5",
"description": "",

@@ -22,3 +22,6 @@ "main": "encrypthashop.js",

"author": "igeek",
"license": "MIT"
"license": "MIT",
"dependencies": {
"dotenv": "^16.0.2"
}
}
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