Cybersecurity glossary
What is a Certificate Authority (CA)?
Learn what a Certificate Authority (CA) is, how CAs issue and vouch for X.509 certificates, how public and private trust anchors differ, and which controls protect CA operations.
Definition
A Certificate Authority (CA) is a trusted entity that issues and digitally signs X.509 certificates, binding public keys to identities so relying parties can validate authenticity within a public key infrastructure (PKI).
Why Certificate Authorities matter
TLS, code signing, email signing, device identity, and many VPN systems depend on a simple question: why should a client trust this public key? A Certificate Authority (CA) answers by signing a certificate that binds the key to a name or identity under published policy.
Without CAs, every client would need an out-of-band copy of every server key. With CAs, clients store a limited set of trust anchors and validate chains dynamically. That convenience concentrates enormous power in CA operations. A mistake or compromise can mint credentials the world—or your entire private network—will believe.
What a CA actually does
A CA is both a technical signer and a policy engine. It verifies identity according to its rules, issues certificates, publishes status information, and eventually stops vouching for credentials that should no longer be trusted.
Receive a request
An applicant submits a CSR or automated enrollment request containing a public key and requested names.
Validate identity
The CA checks domain control, organization identity, or device/user eligibility per policy.
Sign the certificate
The CA uses its private key to sign an X.509 certificate binding the public key to approved identity fields.
Deliver and log
The certificate is returned to the applicant and, for public TLS, often logged to Certificate Transparency.
Support lifecycle events
Renewal, re-key, suspension, and revocation keep the credential aligned with current trust.
Publish status
CRLs and OCSP responses tell relying parties whether issued certificates remain valid.
Root, intermediate, and issuing CAs
Root CA
Trust anchor distributed in browser and OS stores or private trust bundles. Often kept offline with strict ceremony controls.
Intermediate CA
Operational issuer signed by a root. Limits root exposure and allows policy segmentation by purpose or business unit.
Issuing CA
Day-to-day signer for TLS, users, devices, or workloads. Should be narrowly scoped in name constraints and key usage.
Cross-certification
Optional trust bridging between PKI domains. Powerful and easy to misconfigure; use sparingly with clear governance.
Public CAs vs private CAs
| Property | Public CA | Private CA |
|---|---|---|
| Who trusts it | Browsers, OSes, and many default TLS clients | Only systems that install your trust anchor |
| Typical use | Public websites and broadly consumed APIs | mTLS, internal services, devices, employees |
| Policy oversight | CA/Browser Forum and root program requirements | Your organization policy and auditors |
| Mis-issuance impact | Potentially internet-wide trust incidents | Limited to environments that trust the private root |
Private CAs are not “less serious.” They often authenticate privileged machine identities. Weak private CA security can be as damaging as a leaked VPN shared password—except the blast radius includes every service that trusts the CA.
What relying parties should verify
Clients should not treat “signed by a CA” as enough. Validation includes chain building to a configured trust anchor, validity dates, name matching, key usage, extended key usage, and revocation or short lifetimes. For public HTTPS, Certificate Transparency monitoring helps detect unexpected issuance for your domains.
Applications doing client authentication need an even tighter rule: trust only the specific private issuing CA intended for clients, not the entire public web PKI.
CA security essentials
- Protect CA private keys in HSMs and separate root ceremonies from online issuing systems.
- Use intermediates with name constraints and purpose limits wherever the platform supports them.
- Enforce multi-person control, change management, and auditable issuance for sensitive CAs.
- Monitor Certificate Transparency logs for unexpected public certificates on your domains.
- Keep revocation infrastructure highly available; a CA that cannot revoke cannot respond to compromise.
- Inventory every private root embedded in devices, images, and trust stores.
- Prefer automated short-lived issuance for workloads over static multi-year machine certificates.
- Plan distrust and replacement drills before an incident forces an emergency migration.
Choosing and operating CAs
For public TLS, prefer CAs that automate issuance via ACME, support modern algorithms, and publish clear incident processes. For private PKI, decide ownership early: platform engineering, IAM, or security operations. Unowned CAs accumulate orphan trust anchors and forgotten issuing services.
Also separate duties. The team that can mint employee VPN certificates should not silently be able to mint production code-signing certificates from the same unconstrained issuer.
The practical takeaway
A Certificate Authority is the signer and policy authority that makes digital certificates meaningful. Public CAs power internet HTTPS trust; private CAs power internal identity. In both cases, the CA’s private key and issuance policy are crown-jewel controls.
Treat CA design as identity architecture: layered roots and intermediates, constrained issuing purposes, monitored issuance, reliable revocation, and deliberate trust-store management. Certificates inherit the trustworthiness of the authority that signed them.
Related security terms
Public Key Infrastructure (PKI)
The broader system of policies, CAs, certificates, and revocation that establishes cryptographic trust.
X.509 Certificate
The signed credential a CA issues to bind a public key to a subject.
Certificate Signing Request (CSR)
The request format applicants send so a CA can issue a certificate for their key pair.
Certificate Revocation (CRL/OCSP)
Mechanisms CAs publish so relying parties can detect revoked certificates.
Certificate Transparency
Public logging that improves detection of mis-issued publicly trusted TLS certificates.
Frequently asked questions
What is a Certificate Authority in simple terms?
A Certificate Authority is an organization or system that issues digital certificates. By signing a certificate, the CA vouches that a public key belongs to a particular domain, organization, device, or identity under its policy.
What is the difference between a root CA and an intermediate CA?
A root CA is a trust anchor usually kept offline and distributed in trust stores. An intermediate CA is signed by a root or another intermediate and issues day-to-day certificates, limiting exposure of the root private key.
What is a public CA versus a private CA?
Public CAs are trusted by browsers and operating systems for internet TLS. Private CAs are operated for internal users, devices, or services and are trusted only where their root is explicitly installed.
Can I create my own Certificate Authority?
Yes, for private PKI. It is useful for mTLS and internal services, but browsers will not trust it publicly unless you complete a public CA program. Private CA security and lifecycle discipline still matter.
What happens if a CA is compromised?
Attackers may issue fraudulent certificates for identities the CA is allowed to vouch for. Defenders must revoke, rotate trust, and—for public TLS—rely on ecosystem responses such as distrust and Certificate Transparency monitoring.
Why do websites need a CA-signed certificate?
Browsers and clients need a trusted third party to vouch for a site's public key. A CA signature lets clients validate HTTPS identity without pre-installing every site's certificate.
What should organizations check when choosing a public CA?
Review issuance automation quality, validation methods, revocation performance, Certificate Transparency practices, support for modern crypto, incident history, and operational fit for your certificate inventory.
References
Explore authoritative guidance and frameworks related to certificate authority (ca).
Explore every security definition
Return to the glossary to search by term, alias, starting letter, or security category.