1

I have the following data. Can someone help me reverse engineer the checksum calculation?

Data                            Checksum
01 02 80 05 00 00 00 00 00       7d 8c
01 03 80 05 00 00 00 00 00       ae cb
01 04 80 05 00 00 00 00 00       b6 0c
01 05 80 05 00 00 00 00 00       65 4b
01 06 80 05 00 00 00 00 00       10 83
01 07 80 05 00 00 00 00 00       c3 c4
01 08 80 05 00 00 00 00 00       01 1d
julian
  • 7,128
  • 3
  • 22
  • 55
Schack
  • 25
  • 5

1 Answers1

2

Google is your friend. A search for "crc calculation online" delivered the solution on the top hit:

CRC Calculator (Javascript)

enter image description here

josh
  • 1,974
  • 12
  • 9
  • You are very welcome! Sometimes the most obvious solutions are the hardest to find! – josh Jun 27 '18 at 13:49
  • I have test it now --> It works for me. Now I have a function in python to calculate it. Great. – Schack Jun 27 '18 at 18:13