vote up 1 vote down star

Is there a CRC library that enables the user not only detect errors but also correct them? I'm looking for a C/C++ or Java library, ideally open-source.

flag

78% accept rate
Just checking, but is CRC a hard requirement here, or is it a more general requirement for error correction/detection? – skaffman Jun 15 at 18:58
General requirement for error correction/detection so long as it makes sense for low-level communication protocols. Last time I checked everyone was using CRC32 for those. – Gili Jun 16 at 5:23

5 Answers

vote up 4 vote down check

I believe that CRCs can only detect errors, not correct them. That's certainly true of the most common implementation. You want some kind of error correction technique, not a CRC. I'm not aware of any libraries for doing this, but they must be easy enough to find once you know what you're looking for.

link|flag
This doesn't sound right. According to cs.nmsu.edu/~pfeiffer/classes/…: "Any error checking code that can always detect a two-bit error can always correct any one-bit error". And dsprelated.com/showmessage/107079/…: "To be able to do single error correction the word size with ECC bits must be less than or equal to 2**N where N is the number of ECC bits" – Gili Jun 15 at 17:37
1  
That's true on a general level, but the CRC algorithm doesn't do correction. – skaffman Jun 15 at 18:59
You most certainly CAN do error correction with CRC. Use the fact that CRC(A XOR B) = CRC(A) XOR CRC(B)... let B be the error, A the message transmitted, A XOR B is the message received. Then CRC(B) = CRC(A XOR B) XOR CRC(A). It's true that the Hamming-distance proof isn't particularly applicable to all error checking codes (example would be secure hash codes that can't be reserved without great effort), but CRC has no such difficulty. Then you need a lookup table to go from CRC(B) back to B (for single error correction, the lookup table would contain the index of the single error bit). – Ben Voigt Nov 4 at 23:13
vote up 0 vote down

I don't think CRC is used often for error correction, however if you want to check and repair sets of files you can always try par2, which is often used on usenet. You can find a lot of documentation and implementations on the internet, for example a win32 library.

link|flag
vote up 0 vote down

You should specify more about the data that you're working with. Are you streaming data or storing? How noisy is the transmission?

link|flag
I am trying to detect and correct errors in a communication protocol. – Gili Jun 15 at 18:55
vote up 4 vote down

You don't want CRC, but FEC (forward error correction). You can find an open source implementation in libfec.

link|flag
vote up 1 vote down

The best technical solution about Error Correction is called turbocode. See http://en.wikipedia.org/wiki/Turbo_code for more information about that.

But I'm afraid you won't find much free implementations of it.

If you really want a free one, give a try at http://rscode.sourceforge.net/

link|flag

Your Answer

Get an OpenID
or

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