Skip to content

Checksums

What is CRC-64 (Jones)? How to decode it

CRC-64 (Jones) is reversible encoding, not a password hash — decode it instantly with the commands below.

hashcat mode -m 28000

CRC-64 (Jones) 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-64 (Jones) entirely in your browser — your hash is never uploaded. A typical example looks like this:

5e9b8f1e2d3c4b5a

Decoding this value

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

echo '5e9b8f1e2d3c4b5a' > hash.txt && hashcat -m 28000 hash.txt /usr/share/wordlists/rockyou.txt