Question

I have to create a crc32 sum over a file. But there are some dependencies:

crc32 with the polynom 0x04C11DB7
Init of the crc with 0xffffffff 
and a final XOR with 0xffffffff

How can i get this working?

Was it helpful?

Solution

That is the standard CRC-32 used by zip, gzip, zlib, etc. You can simply use the crc32() function in zlib.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top