smarthash/README.md

15 lines
442 B
Markdown
Raw Normal View History

2016-08-15 02:43:26 +00:00
# nodehash
simplifies access to node hash functions. TypeScript Ready
2016-08-15 03:55:09 +00:00
## Status
[![build status](https://gitlab.com/pushrocks/nodehash/badges/master/build.svg)](https://gitlab.com/pushrocks/nodehash/commits/master)
## Usage
We recommend the use of TypeScript for best in class intellisense.
```typescript
import * as nodehash from "nodehash";
let sha256 = new nodehash.sha256();
let myHashedString = sha256.fromString();
```