Checksums are used to detect errors in data transmission or storage. Unlike cryptographic hashes, checksums are optimized for speed and error detection, not security. Common in network protocols, file transfers, and data storage.
Inputs
Tab: Choose between computing a checksum or comparing against an expected value.
Algorithm: The checksum algorithm.
Input: The data to checksum in HEX or ASCII format.
Tips
CRC32 is the most widely used checksum algorithm.
Checksums detect accidental errors but are NOT secure against intentional tampering.
For security purposes, use cryptographic hashes (SHA-256) instead.
Standards: ISO 3309 (CRC-32), ITU-T V.41 (CRC-16-CCITT)