Certificate Chain¶
IronRoot certificates are validated as a chain:
flowchart TD
Root[Root CA<br/>trusted by OS/browser] --> Intermediate[Intermediate CA]
Intermediate --> Leaf[Website or client certificate]
Leaf --> Browser[Browser or workload verifier]
A verifier does not need the private key for any CA. It needs the public Root CA certificate in a trust store and the Intermediate certificate in the served chain.
Browser Trust¶
For local testing, install root-ca.crt or trust-bundle/root-ca.crt into the OS or browser trust store. The browser then validates:
- The website certificate matches the DNS name.
- The website certificate was signed by the Intermediate.
- The Intermediate was signed by the trusted Root.
- None of the certificates are expired.
Verify A Chain¶
ironroot-admin ca verify-chain \
--root-cert ./pki/root/root-ca.crt \
--intermediate-cert ./pki/intermediate/intermediate-ca.crt \
--cert ./certs/tls.crt