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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That is the standard CRC-32 used by zip, gzip, zlib, etc. You can simply use the
crc32()function in zlib.