Skip to content

Checksums

What is CRC-32? How to decode it

CRC-32 is reversible encoding, not a password hash — decode it instantly with the commands below.

hashcat mode -m 11500John format crc32

CRC-32 is a checksum hash type. It is not a one-way password hash — the original value can be recovered directly without cracking. This page shows how to recognise it and the exact commands to attack it.

All identification runs locally in WebAssembly. The commands below write the hash to a local file on your machine — nothing is sent to this site.

Identifying the hash

The hash identifier on the home page detects CRC-32 entirely in your browser — your hash is never uploaded. A typical example looks like this:

c762de4a

Decoding this value

CRC-32 is not a cryptographic password hash, so there is nothing to "crack". The original data can be recovered directly:

echo 'c762de4a' > hash.txt && hashcat -m 11500 hash.txt /usr/share/wordlists/rockyou.txt