Cryptographic Hash Generator

Which hash algorithm should you use?

Use SHA-256 for anything security-related. MD5 and SHA-1 are cryptographically broken — practical collision attacks exist — so limit them to cache keys and checksums against accidental corruption. Passwords need a slow, salted algorithm such as bcrypt or Argon2, never a raw SHA digest.

Last updated 2026-07-30

Produce MD5, SHA-1, SHA-256 and SHA-512 digests from any text. Useful for verifying checksums and comparing file fingerprints.

How to use Cryptographic Hash Generator

  1. Enter your text — Type or paste the content you want to hash.
  2. Read the digests — All supported algorithms are computed at once and shown together.
  3. Copy what you need — Copy any individual hash to your clipboard.

Frequently asked questions

Which hash algorithm should I use?
SHA-256 for anything security-related. MD5 and SHA-1 are cryptographically broken — practical collision attacks exist — so limit them to non-security uses like cache keys and checksums against accidental corruption.
Can a hash be reversed?
Not mathematically. But common passwords are trivially found in precomputed rainbow tables, which is why passwords must be hashed with a slow, salted algorithm such as bcrypt or Argon2 rather than a raw SHA digest.
Are my files uploaded to a server?
No. Every conversion runs inside your own browser using JavaScript and WebAssembly. Your files never leave your device, which means there is nothing for us to store, read, or leak.

Related tools