Hash Generator (SHA-1/256/384/512)

Compute cryptographic hashes in the browser using Web Crypto.

Uses SubtleCrypto — runs entirely in your browser. MD5 is intentionally excluded (weak and deprecated).

Runs entirely in your browser — nothing you paste is sent to a server.

About this tool

Generates SHA-1, SHA-256, SHA-384, and SHA-512 digests using SubtleCrypto. Fast, local, and matches what your backend (or git) will produce.

How it works

  1. Type or paste text.
  2. The tool UTF-8 encodes and runs each algorithm via crypto.subtle.digest.
  3. Results are hex-encoded and shown alongside a copy button.

When to use it

  • Verifying a checksum from a download.
  • Producing content-addressable IDs for cached AI outputs.
  • Confirming a webhook body signature calculation locally.

FAQs

Related resources