Last active
March 11, 2016 04:35
-
-
Save tajpure/f42ea54f1f45e9f00115 to your computer and use it in GitHub Desktop.
Rolling checksum
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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