Skip to content

gavr-pavel/fletcher32.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

fletcher32.js

Usage

var checksum = new Fletcher32();
checksum.append(data); // data should be an array of uint8 or uint16
checksum.append(someMoreData);
// ...
var hash = checksum.result().toString(16);