Skip to content

Instantly share code, notes, and snippets.

@Shujito
Created February 18, 2016 15:17
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 Shujito/a0120fc686df1d40694f to your computer and use it in GitHub Desktop.
Save Shujito/a0120fc686df1d40694f to your computer and use it in GitHub Desktop.
some notes
byte[][] combinations = {
{ 1, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
};
List<Long> crcList = new ArrayList<>();
for (byte[] combination : combinations) {
crcList.add(this.crc32(combination));
}
Log.i(TAG, "combos:" + crcList);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment