Skip to content

Instantly share code, notes, and snippets.

View ivangomes's full-sized avatar
🎃
Trick or treat

Ivan Gomes ivangomes

🎃
Trick or treat
View GitHub Profile
@scottmkroberts
scottmkroberts / CRC16-Javascript.js
Created February 29, 2012 19:57
CRC-16 Hash Computation for Case Labels
console.log("hello CRC16");
function CreateCrc16(){
var polynomial,value,temp;
var table=new Array(256);
polynomial=40961;
for(i=0;i<table.length;++i){
value=0;temp=i;