Comparing version 1.0.5 to 1.1.0
@@ -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", |
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
3060