[Pycrc-users] only XOR operation , please, We need your help.
CRC C source generator
Brought to you by:
tpircher
|
From: Sebastian C. <jca...@in...> - 2010-04-19 16:55:29
|
We need your help. It is possible to calculate the CRC (only XOR operation) of the following numbers in hexadecimal through pycrc.py? How We can do? 24 5A 39 30 22 00 23 10 1D 0E 04 28 E2 05 4A 03 8D 13 3B 00 6A 00 13 04 0A FB 09 E3 92 D5 00 00 00 = 26 = CRC I need exactly the operation is as follows: 0x24 xor 0x5A xor 0x39 xor 0x30 xor 0x22 xor 0x00 xor 0x23 xor 0x10 xor 0x1D xor 0x0E xor 0x04 xor 0x28 xor 0xE2 xor 0x05 xor 0x4A xor 0x03 xor 0x8D xor 0x13 xor 0x3B xor 0x00 xor 0x6A xor 0x00 xor 0x13 xor 0x04 xor 0x0A xor 0xFB xor 0x09 xor 0xE3 xor 0x92 xor 0xD5 xor 0x00 xor 0x00 xor 0x00 = 0x26 = CRC |