Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 754 Bytes

crc.md

File metadata and controls

26 lines (19 loc) · 754 Bytes
aliases author created modified tags title
CRC
CRC32
Maneesh Sutar
2024-05-31
2024-09-28
Cyclic Redunduncy Checks

Cyclic Redundancy Checks

An error detection scheme.

Using CRC algorithms, we can generate "check value", which are used to verify the integrity of the data.

Typically used during transport of data via network.
The network packet contains CRCs to detect error during transmission.

Working

Rather than me writing, best explained by these 2 references:

  1. CRCs youtube video by Ben Eater
  2. CRC Wiki's "Computation".