2016-08-16 03:37:40 +02:00
2016-08-16 03:37:40 +02:00
2016-08-16 03:37:40 +02:00
2016-08-16 03:37:40 +02:00
2016-08-15 04:43:26 +02:00
2016-08-15 05:55:09 +02:00
2016-08-15 04:43:26 +02:00
2016-08-15 05:55:09 +02:00
2016-08-16 03:37:40 +02:00
2016-08-16 03:37:40 +02:00

nodehash

simplifies access to node hash functions. TypeScript Ready

Status

build status

Usage

We recommend the use of TypeScript for best in class intellisense.

import * as nodehash from "nodehash";

// from stream
let readStream = fs.createReadStream("./somefile.txt");
nodehash.sha256FromStream(readStream)
    .then((resultString){
        console.log(resultString); // prints hash of the file
    });

// from file
nodehash.sha256FromFile("./somefile.txt")
    .then((resultString){
        console.log(resultString); // prints hash of the file
    });

// from string
nodehash.sha256FromString("some weird random string");
    .then((resultString){
        console.log(resultString); // prints hash of the file
    });

let hashString = nodehash.sha256FromStringSync("some weird random string")
Description
Provides simplified access to Node.js hash functions, including SHA256 and MD5, with support for strings, streams, and files.
Readme 2.1 MiB
Languages
TypeScript 100%