Progressive Hashing
create
const hash = Cryptopp.hash.create('BLAKE2b');
Parameters
| Parameter | Type | Required | 
|---|---|---|
| hash | Name of any supported hash | ✅ | 
Returns: Hash object
hash.update
hash.update('Message');
Parameters
| Parameter | Type | Required | 
|---|---|---|
| data | string ArrayBuffer | ✅ | 
hash.finalize
const BLAKE2b_progressive = hash.finalize();