An open API service indexing awesome lists of open source software.

https://github.com/mining-pool/node-hashing-x16r


https://github.com/mining-pool/node-hashing-x16r

Last synced: 8 months ago
JSON representation

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);

```