tags:

views:

43

answers:

3
+1  Q: 

CRC and checksum

what the difference?

+4  A: 

CRC refers to a specific checksum algorithm. Other types of checksums are XOR, modulus, and all the various cryptographic hashes.

Ignacio Vazquez-Abrams
+2  A: 

Check out HowStuffWorks for a good description of both and how they differ.

From the page:

Cyclic Redundancy Check (CRC)

CRCs are similar in concept to checksums, but they use polynomial division to determine the value of the CRC

More info is given at the link above including an example of how a checksum is calculated.

TLiebe
+3  A: 

CRC (Cyclic Redundancy Check) is a type of checksum, specifically a position dependent checksum algorithm (among others, such as Fletcher's checksum, Adler-32). As their name suggest, these detect positional changes as well, which makes them more robust - thus more widely used - than other checksum methods.

Péter Török