Provides simplified access to Node.js hash functions, including SHA256 and MD5, with support for strings, streams, and files.
Go to file
2016-08-15 05:55:34 +02:00
dist add some structure 2016-08-15 05:55:09 +02:00
test add structure 2016-08-15 04:43:26 +02:00
ts add some structure 2016-08-15 05:55:09 +02:00
.gitignore add structure 2016-08-15 04:43:26 +02:00
.gitlab-ci.yml add some structure 2016-08-15 05:55:09 +02:00
LICENSE add structure 2016-08-15 04:43:26 +02:00
npmextra.json add some structure 2016-08-15 05:55:09 +02:00
package.json 1.0.1 2016-08-15 05:55:34 +02:00
README.md add some structure 2016-08-15 05:55:09 +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";

let sha256 = new nodehash.sha256();
let myHashedString = sha256.fromString();