1.0.0 • Published 3 years ago

node-hash-argon2d v1.0.0

Weekly downloads
-
License
-
Repository
github
Last release
3 years ago

node-dynamic-argon2d

Usage

to create a raw hash from a string of data

var argon2d = require('node-hash-argon2d');
var buf = Buffer.from("someString", 'utf8');
var hash = argon2d.argon2d(buf);
console.log(hash);
//should return <Buffer 0d 01 c4 09 bd 11 f1 07 d0 e9 41 ca c3 bd bf 3e ed 02 0f 9e ca d2 2b 8a 8f a0 eb 3a e2 2c b1 e0>