Need a thumbprint-shaped string to drop into a TLS or PKI test? This generator produces correctly formatted SHA-1 and SHA-256 certificate thumbprints from cryptographically random bytes. They look real but match no certificate.
How it works
A certificate thumbprint is simply a cryptographic hash of the certificate’s DER bytes, displayed as hexadecimal. The byte length depends on the algorithm:
SHA-1 20 bytes -> 40 hex characters
SHA-256 32 bytes -> 64 hex characters
The tool draws the right number of random bytes from the browser’s Web Crypto generator and formats them as uppercase hex, optionally separated by colons or spaces. Because the bytes are random rather than hashed from a real certificate, the result is a safe placeholder.
Tips and notes
Match the display format to your target tool: OpenSSL and browsers favour colon-separated hex, Windows certificate dialogs show space-separated bytes, and config files usually want unseparated hex. Never treat a generated value as a trust anchor — pin only thumbprints derived from certificates you actually control.