Skip to content

Instantly share code, notes, and snippets.

@2bbb
Created July 28, 2015 10:31
Show Gist options
  • Select an option

  • Save 2bbb/19093f4f17e08015671d to your computer and use it in GitHub Desktop.

Select an option

Save 2bbb/19093f4f17e08015671d to your computer and use it in GitHub Desktop.
crc8
function crc8(arr) {
var crc = 0;
for(var i = 0; i < arr.length; i++) {
crc ^= arr[i];
for(var j = 0; j < 8; j++) {
if(crc & 0x80) {
crc <<= 1;
crc ^= 0x85;
} else {
crc <<= 1;
}
}
}
return crc & 0xFF;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment