0

Is there any checksum that results in 2 digit hexadecimal?

I can only find NMEA Checksum...

references:

http://nmeachecksum.eqth.net/

http://en.wikipedia.org/wiki/NMEA_0183

I have some data file that I want to perform reverse engineering to find the kind of checksum.

Thank you in advance,

DynamicScope
  • 695
  • 9
  • 26

1 Answers1

3

Two hex digits is one byte. You're looking for a checksum which produces one byte.

Obviously, you've got a simple additive checksum (sum the bytes of the input), and an xor of the input bytes.

It could also be a longer checksum of which only 8 bits have been taken.

It could also be some kind of CRC-8; Wikipedia knows about five kinds of standardised CRC-8.

Tom Anderson
  • 46,189
  • 17
  • 92
  • 133