Skip to content
Computing Medium #x509#pki#certificate

X.509 Certificate Chain

Leaf cert, intermediates, root. Each signed by the next, anchored by a trusted root.

A free, animated x.509 certificate chain you can read here or embed on any website, from Scrollchart.

X.509 Certificate Chain

X.509 Certificate Chain of TrustBrowser verifies leaf cert signature, walks up to a trusted root before accepting the TLS connectionsigned by Root CAsigned by Intermediate CARoot CAs: ~150 in major trust stores. Intermediate CAs never stored in client; must be sent in TLS handshake.

A leaf certificate for example.com signed by an intermediate CA, signed by a root in the OS trust store. Verification walks up the chain checking signatures, validity periods, and revocation (CRL/OCSP). Cross-signing scenario shown for ecosystem migration.

Good for

  • TLS and PKI explainers for engineering and DevOps blogs
  • Security training modules on MITM and certificate validation
  • Certificate management guides for DevOps and SRE teams

Source & accuracy

This x.509 certificate chain is an editorial illustration built to represent the concept accurately. Where it shows figures, they are typical or representative values chosen to make the relationship clear, not a single underlying dataset. The diagram and its explainer are reviewed and maintained centrally, and updated over time as understanding improves.

How an X.509 certificate chain establishes trust

An X.509 certificate chain (also called a chain of trust) links a server's certificate back to a trusted root through a sequence of digital signatures. The leaf certificate identifies the end entity, such as a website. It is signed by one or more intermediate certificate authorities, and the topmost intermediate is signed by a root CA whose certificate is self-signed. Each certificate is validated by checking the signature against the public key of the certificate above it.

Trust ultimately rests on the root, which is preinstalled in the operating system or browser trust store. If a client trusts the root and every signature in the chain verifies, the leaf is trusted.

Why intermediates exist

Root CA private keys are extremely valuable and are kept offline in hardware security modules. Intermediates let the root delegate day-to-day signing without exposing itself, and they can be revoked or rotated without distrusting the root. During a TLS handshake the server should send the leaf plus the intermediates so the client can build the full path; a missing intermediate is a frequent cause of trust errors. Validation also checks expiry dates, revocation status (via CRL or OCSP), and that each issuer was authorized to sign.

Embed this diagram

Add this animated x.509 certificate chain to your own site. Copy one line of HTML, or use the embed builder for theme and sizing options.

Reference

What this is
A free, embeddable, animated x.509 certificate chain for any website.
Who uses it
Security blogs, Developer blogs, DevOps / SRE sites.
How to embed
Copy one line of HTML. No signup. No watermark. Works in WordPress, Webflow, Ghost, Substack, plain HTML.
File size
iframe embed, ~80 KB gzipped (loads on demand, does not block your page paint).
License
Free forever. Editorial explainer text included; updated centrally over time.

Embed format options

Copy the universal HTML snippet, the WordPress shortcode, or an iframe fallback - see the WordPress plugin page for details. Any format keeps the same Core Web Vitals profile and the same explainer text.

Embed snippet
<div data-scrollchart="certificate-chain" data-scrollchart-v="1"></div>
<script src="https://scrollchart.com/embed.js" async></script>

Frequently asked questions

Where can I get a free animated "X.509 Certificate Chain" for my website?
Scrollchart provides "X.509 Certificate Chain" as a free, embeddable animated diagram you can add to any website with one line of HTML. No signup is required and there is no watermark. The diagram and its explainer text are served from scrollchart.com, so the embed stays current without any maintenance on your end.
How do I embed a x.509 certificate chain in a developer or tech blog?
Copy the one-line snippet from the Scrollchart diagram page and paste it into your post HTML. It works in any static site generator, CMS, or hand-coded HTML page. The embed is a thin loader, not an iframe, so the content is fully in your DOM.