https://github.com/mining-pool/node-hashing-x16r
https://github.com/mining-pool/node-hashing-x16r
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mining-pool/node-hashing-x16r
- Owner: mining-pool
- Created: 2019-12-25T19:03:05.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-11-01T00:35:22.000Z (over 5 years ago)
- Last Synced: 2025-03-26T15:17:36.999Z (about 1 year ago)
- Language: C
- Size: 653 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
node-hashing-x16r
===============
x16r hashing functions for NodeJS(>=13).
Usage
-----
```javascript
const hashing = require('hashing-x16r');
let data = new Buffer.from("7000000001e980924e4e1109230383e66d62945ff8e749903bea4336755c00000000000051928aff1b4d72416173a8c3948159a09a73ac3bb556aa6bfbcad1a85da7f4c1d13350531e24031b939b9e2b", "hex");
let hashedData = hashing.hash(data);
console.log(hashedData);
```