← All tools
// Hash & Crypto

CRC16 / CRC32 / Adler32

Checksum calculator — CRC, Adler-32 and FNV hashes for text or files

CRC checksum mascot
by
CHUNKY
MUNSTER

About CRC Checksums

What is CRC32?

CRC32 is a 32-bit cyclic redundancy check used to detect data corruption. Found in ZIP files, PNG images, Ethernet frames, and storage systems. It produces an 8 hex-digit value.

What is Adler-32?

Developed by Mark Adler, Adler-32 is faster than CRC32 but slightly less reliable for small messages. It is used in zlib and PNG alongside CRC32.

What is FNV-1a?

Fowler–Noll–Vo (FNV) is a fast non-cryptographic hash used in hash tables and caches. FNV-1a has better avalanche properties than the original FNV-1.

Are these cryptographically secure?

No. CRC and Adler checksums detect accidental errors only — they can be intentionally forged. For security-sensitive integrity checking use SHA-256 or SHA3.