0

Possible Duplicate:
CRC32 C or C++ implementation

Where can I find a CRC32 implementation for strings?

Community
  • 1
  • 1
blez
  • 4,939
  • 5
  • 50
  • 82

1 Answers1

0

There are many specifications for CRC32 depending on the polynomial (magic numbers). First thing to do is find out which specific CRC32 you need. Then generate the CRC32 table using a code generator.

  • There are several CRC32 variants. This is because there are three configuration factors, Reflected input (simply bit reversed), Reflected output (again the output of the CRC32 bit reversed) and the seed or start value which is generally either 0xFFFFFFFF or 0x00000000. That gives eight variants already! – user50619 Dec 04 '18 at 16:09