CRC-32 LIBRARY
-
I'm looking for a C(++) library which would enable me to work with 32-bit CRC. I would also appreciate some reference to any theory behind that. Will somebody help me? Thanks. Marek Svantner
-
I'm looking for a C(++) library which would enable me to work with 32-bit CRC. I would also appreciate some reference to any theory behind that. Will somebody help me? Thanks. Marek Svantner
Take a look at http://sourceforge.net/projects/yeasoft/ - In that class library you will find a class for calculating the CRC-32. The related files are yCrc32.h, yCrc32.inl and yCrc32.cpp and you can find them browsing the CVS repository.
-
I'm looking for a C(++) library which would enable me to work with 32-bit CRC. I would also appreciate some reference to any theory behind that. Will somebody help me? Thanks. Marek Svantner
Take a look at the zlib, this compression library comes with a crc32 algorithm, the link for zlib is: http://www.info-zip.org/pub/infozip/zlib/ Rui Lopes