Blake2b (64-bit version) in pure Javascript with WASM upgrade
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

6 lines
129 B

var blake2b = require('./index.js')
var output = new Uint8Array(64)
var input = Buffer.from('hello world')
blake2b(out, input)