How do you create a checksum using the logical "XOR" of all 32-bit words in a binary file? I would like to implement this in C++ rather than use a tool.
At a guess, read the file in as a 32 bit integer array, the run an iterative loop xoring the next byte with a byte used to store the final checksum. Cant remeber what the operator is for xor but sure google will help you there.