Huge News!Announcing our $40M Series B led by Abstract Ventures.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.0.5 to 1.1.0

4

index.js

@@ -22,3 +22,3 @@ const hash = function (string, pass) {

const bConvert = btoa(outputStr);
const bConvert = Buffer.from(outputStr).toString('base64');

@@ -37,3 +37,3 @@ return bConvert;

const bReverse = atob(inputRev); // reverse first from base64 to text salted
const bReverse = Buffer.from(inputRev, 'base64').toString();

@@ -40,0 +40,0 @@ var revArr = bReverse.split('');

{
"name": "keyhasher",
"version": "1.0.5",
"version": "1.1.0",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",

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