This is just a data presentation issue:
And here is a piece of code to illustrate this:
$crc = crc32('10f86782177490f2ac970b8dc4c51014'); var_dump($crc); var_dump(dechex($crc));
The following is displayed:
int -951183655 string 'c74e16d9' (length=8)
Which corresponds to:
- Decimal value representation of your CRC
- and after that a hexadecimal representation of the same meaning.
Pascal martin
source share