Checksums
What is CRC-32C (Castagnoli)? How to decode it
CRC-32C (Castagnoli) is reversible encoding, not a password hash — decode it instantly with the commands below.
CRC-32C (Castagnoli) 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-32C (Castagnoli) entirely in your browser — your hash is never uploaded. A typical example looks like this:
e3069283
Decoding this value
CRC-32C (Castagnoli) is not a cryptographic password hash, so there is nothing to "crack". The original data can be recovered directly:
echo 'e3069283' > hash.txt && hashcat -m 27900 hash.txt /usr/share/wordlists/rockyou.txt