Hashing is one-way
A cryptographic hash converts input into a fixed-length digest and is not encryption. The original value cannot normally be recovered from the digest alone.
Generate one or several digest values from text or a text file. Select MD5 or a SHA algorithm, copy each result, and compare a known checksum against the generated values.
A cryptographic hash converts input into a fixed-length digest and is not encryption. The original value cannot normally be recovered from the digest alone.
MD5 and SHA-1 are retained for compatibility and checksum comparison but should not be used for collision-resistant security. Prefer SHA-256 or stronger for modern integrity checks.
No. Hash functions are designed to be one-way and the tool only generates or compares digest values.
MD5, SHA-1, SHA-256, SHA-384, and SHA-512 are available.
The current upload control is intended for text files. Use a dedicated binary checksum utility when arbitrary binary file bytes must be hashed exactly.
Generate cryptographic hashes using various algorithms