@anzerr/blake2b
TypeScript icon, indicating that this package has built-in type declarations

1.0.15 • Public • Published

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

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.15
    2
    • latest
  • 1.0.4
    1
    • old

Version History

Package Sidebar

Install

npm i @anzerr/blake2b

Weekly Downloads

11

Version

1.0.15

License

MIT

Unpacked Size

8.66 kB

Total Files

10

Last publish

Collaborators

  • anzerr