Skip to content

Instantly share code, notes, and snippets.

@tajpure
Last active March 11, 2016 04:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tajpure/f42ea54f1f45e9f00115 to your computer and use it in GitHub Desktop.
Save tajpure/f42ea54f1f45e9f00115 to your computer and use it in GitHub Desktop.
Rolling checksum
/*
* Rolling Checksum from
* http://www.cs.cmu.edu/~15-749/READINGS/required/cas/tridgell96.pdf
*
*/
'use strict';
module.exports = {
last: null,
checksum: function (data, isNotRolling) {
const buffer = new Buffer(data);
const length = buffer.length;
const M = Math.pow(2, 32);
let a = 0;
let b = 0;
let last = this.last;
if (last && !isNotRolling) {
a = (last.a - last.buffer[0] + buffer[length-1]) % M;
b = (last.b - length * last.buffer[0] + a) % M;
last = {buffer: buffer, a: a, b: b, s: (a + M * b)};
this.last = last;
} else {
for (let i = 0; i + 1 <= length; i++) {
a = (a + buffer[i]);
b = b + ((length - i) * buffer[i]);
}
a = a % M;
b = b % M;
last = {buffer: buffer, a: a, b: b, s: (a + M * b)};
}
return last.s;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment