1.0.15 • Published 3 years ago

@anzerr/blake2b v1.0.15

Weekly downloads
1
License
MIT
Repository
github
Last release
3 years ago

Intro

GitHub Actions status | publish

Blake2B in Javascript (cleaned up version)

Install

npm install --save git+https://github.com/anzerr/blake2b.git
npm install --save @anzerr/blake2b

Example

const blake = require('blake2b');

let context = blake.createHash({digestLength: 8});
context.update('cat');
context.update('dog');
console.log(context.digest().toString('hex')); // 3346a0d3f9b3a626