Is there any idea how to do the following?
For example I have a 0x1100000000 (5 bytes total, 1 actual data byte and 4 zero bytes (padding))
I can calculate the needed CRC (crc32 in my case) on this data portion without any problems.
Then knowing the totacl CRC of 5 bytes and knowing the number of zero padding padding bytes is it possible to evaluate the CRC of the data byte (0x11 in my case)?
-Thanks in advance