Skip to content

Instantly share code, notes, and snippets.

@nuc
Created March 21, 2016 09:02
Show Gist options
  • Save nuc/473ad23190f614da39a7 to your computer and use it in GitHub Desktop.
Save nuc/473ad23190f614da39a7 to your computer and use it in GitHub Desktop.
XOR checksum on array of hex strings
const calculateXORChecksum = array =>
array.reduce((checksum, item) =>
checksum ^ parseInt(item, 16)
, 0).toString(16)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment