vote up 3 vote down star

I'm looking for an implementation of CRC32 in C or C++ that is explicitly licensed as being free or public domain. The implementation here seems nice, but the only thing it says about the license is "source code", which isn't good enough. I'd prefer non LGPL so I don't have to fool around with a DLL (my app is closed source). I saw the adler32 implementation in zlib, but I'm checking small chunks of data, which adler is not good for.

Thanks!

flag

47% accept rate
Is CRC32 patented? Anyway, if you're in Europe, AFAIK, software patents don't apply. – friol Nov 19 '08 at 18:44
Why do you think adler32 is no good for small chunks? – wnoise Nov 19 '08 at 19:16
zlib.net/zlib_tech.html "So if the Adler-32 is used on significantly less than about a kilobyte, it will be noticeably weaker than a CRC-32 on the same small block" – twk Nov 20 '08 at 0:56

4 Answers

vote up 9 vote down check

Use the Boost C++ libraries. There is a CRC included there and the license is good.

link|flag
Yup, I've used the CRC32 in Boost with very satisfying results. +1 from me. – Andreas Magnusson Nov 19 '08 at 21:54
vote up 6 vote down

The SNIPPETS C Source Code Archive has a CRC32 implementation that is freely usable:

/* Copyright (C) 1986 Gary S. Brown.  You may use this program, or
   code or tables extracted from it, as desired without restriction.*/
link|flag
vote up 2 vote down

I am the author of the source code at the specified link. While the intention of the source code license is not clear (it will be later today), the code is in fact open and free for use in your free or commercial applications with no strings attached.

link|flag
Hey Josh, that is really awesome. Thanks so much for clearing that up. I've been through an acquisition before and they were super-picky about the license of every chunk of code I was using. – twk Feb 3 at 16:07
vote up 1 vote down

pycrc is a Python script that generates C CRC code, with options to select the CRC size, algorithm and model.

It's released under the MIT licence. Is that acceptable for your purposes?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.