43 lines
1.7 KiB
JSON
43 lines
1.7 KiB
JSON
{
|
|
"name": "scrypt-jane-hash",
|
|
"version": "0.0.2",
|
|
"main": "scryptjanehash",
|
|
"author": {
|
|
"name": "Matthew Little",
|
|
"email": "zone117x@gmail.com"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://github.com/zone117x/node-scrypt-jane-hash.git"
|
|
},
|
|
"dependencies": {
|
|
"bindings": "*"
|
|
},
|
|
"keywords": [
|
|
"scrypt",
|
|
"scrypt-jane",
|
|
"jane",
|
|
"scryptjane",
|
|
"yac-scrypt",
|
|
"yacscrypt",
|
|
"hash",
|
|
"256",
|
|
"yacoin",
|
|
"crypto",
|
|
"cryptocurrency"
|
|
],
|
|
"scripts": {
|
|
"install": "node-gyp rebuild"
|
|
},
|
|
"gypfile": true,
|
|
"readme": "node-scrypt-jane-hash\n===============\n\nScrypt-jane (yac-scrypt) hashing function for node.js. Useful for various cryptocurrencies.\n\nUsage\n-----\n\nInstall\n\n npm install scrypt-jane-hash\n\n\nHash your data\n\n var scryptJane = require('scrypt-jane-hash');\n\n var timestamp = Date.now() / 1000 | 0;\n\n var data = new Buffer(\"hash me good bro\");\n var hashed = scryptJane.digest(data, timestamp); //returns a 32 byte buffer\n\n console.log(hashed);\n //<SlowBuffer 0b de 16 ef 2d 92 e4 35 65 c6 6c d8 92 d9 66 b4 3d 65 ..... >\n\nCredits\n-------\n* Uses scrypt.c written by Colin Percival\n* [Andrew M](https://github.com/floodyberry/scrypt-jane) for scrypt-jane\n* This module ported from [p2pool's scrypt-jane python module](https://github.com/Rav3nPL/p2pool-yac/tree/master/yac_scrypt)",
|
|
"readmeFilename": "README.md",
|
|
"description": "node-scrypt-jane-hash ===============",
|
|
"bugs": {
|
|
"url": "https://github.com/zone117x/node-scrypt-jane-hash/issues"
|
|
},
|
|
"homepage": "https://github.com/zone117x/node-scrypt-jane-hash",
|
|
"_id": "scrypt-jane-hash@0.0.2",
|
|
"_from": "scrypt-jane-hash@"
|
|
}
|