Gathering detailed insights and metrics for multi-hashing1
Gathering detailed insights and metrics for multi-hashing1
Gathering detailed insights and metrics for multi-hashing1
Gathering detailed insights and metrics for multi-hashing1
npm install multi-hashing1
Typescript
Module System
NPM Version
C (97.88%)
C++ (1.77%)
JavaScript (0.28%)
Python (0.07%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
98 Stars
193 Commits
587 Forks
20 Watchers
6 Branches
27 Contributors
Updated on Jun 02, 2025
Latest Version
0.0.2
Package Id
multi-hashing1@0.0.2
Size
241.50 kB
NPM Version
1.2.18
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
Cryptocurrency hashing functions for node.js.
Install
1npm install multi-hashing
So far this native Node.js addon can do the following hashing algos
1var multiHashing = require('multi-hashing'); 2 3var algorithms = ['quark', 'x11', 'scrypt', 'scryptn', 'scryptjane', 'keccak', 'bcrypt', 'skein', 'blake']; 4 5var data = new Buffer("7000000001e980924e4e1109230383e66d62945ff8e749903bea4336755c00000000000051928aff1b4d72416173a8c3948159a09a73ac3bb556aa6bfbcad1a85da7f4c1d13350531e24031b939b9e2b", "hex"); 6 7var hashedData = algorithms.map(function(algo){ 8 if (algo === 'scryptjane'){ 9 //scryptjane needs block.nTime and nChainStartTime (found in coin source) 10 var yaCoinChainStartTime = 1367991200; 11 var nTime = Math.round(Date.now() / 1000); 12 return multiHashing[algo](data, nTime, yaCoinChainStartTime); 13 } 14 else{ 15 return multiHashing[algo](data); 16 } 17}); 18 19 20console.log(hashedData); 21//<SlowBuffer 0b de 16 ef 2d 92 e4 35 65 c6 6c d8 92 d9 66 b4 3d 65 ..... > 22 23
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
Found 6/11 approved changesets -- score normalized to 5
Reason
dependency not pinned by hash detected -- score normalized to 2
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
license file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
10 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More