https://github.com/anzerr/blake2b
Blake2B in Javascript
https://github.com/anzerr/blake2b
blake2b hash nodejs util
Last synced: 9 months ago
JSON representation
Blake2B in Javascript
- Host: GitHub
- URL: https://github.com/anzerr/blake2b
- Owner: anzerr
- License: mit
- Created: 2018-07-10T09:48:03.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-01-21T16:11:16.000Z (over 4 years ago)
- Last Synced: 2025-07-27T02:18:45.957Z (10 months ago)
- Topics: blake2b, hash, nodejs, util
- Language: JavaScript
- Homepage:
- Size: 76.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### `Intro`

Blake2B in Javascript (cleaned up version)
#### `Install`
``` bash
npm install --save git+https://github.com/anzerr/blake2b.git
npm install --save @anzerr/blake2b
```
#### `Example`
```javascript
const blake = require('blake2b');
let context = blake.createHash({digestLength: 8});
context.update('cat');
context.update('dog');
console.log(context.digest().toString('hex')); // 3346a0d3f9b3a626
```