Checksum

A value computed for error detection in data. Used to verify data integrity during transfer and storage.

A checksum is a value computed to verify the integrity of data. By comparing checksums at the source and destination, you can confirm that data has not been corrupted during transfer.

Common checksum methods include CRC (Cyclic Redundancy Check), Adler-32, and MD5 checksums. CRC-32 generates a 32-bit check value and is widely used in network communications and file archives. Network engineering books explain how checksums work in detail.

Verifying SHA-256 checksums provided with software downloads confirms that files have not been tampered with. Linux distribution ISO images typically publish checksum values on their official sites.

In terms of character count, checksum string lengths are fixed by algorithm: CRC-32 produces 8 hexadecimal characters, while MD5 produces 32. Data communications fundamentals books provide additional context.