Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What the difference between CRC and checksum?

Tags:

networking

What the difference between CRC and checksum?

like image 625
user287745 Avatar asked Jul 28 '10 20:07

user287745


People also ask

Is CRC more popular than checksum?

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.

What is the difference between checksum and check digit?

A check digit, also known as a checksum character, is the number located on the far right side of a bar code. The purpose of a check digit is to verify that the information on the barcode has been entered correctly.

What is the function of CRC code in checksum field?

CRC or Cyclic Redundancy Check is a method of detecting accidental changes/errors in the communication channel. CRC uses Generator Polynomial which is available on both sender and receiver side.


1 Answers

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.

like image 109
Péter Török Avatar answered Sep 28 '22 02:09

Péter Török