Skip to main content
TLS

SSL/TLS certificates: what those fields and expiry dates actually mean

A TLS certificate binds a public key to names under a certificate authority's validation. Check SANs, chain, validity, and renewal—not just the green lock.

Thien Nguyen
By Thien Nguyen
Updated May 20, 2026 · 1 min read

The browser lock means a TLS connection was established; it does not mean the site is trustworthy in every other way.

Short answer: inspect Subject Alternative Names (SANs) for host coverage, issuer and chain for trust, validity dates for renewal, and the deployed key/certificate pair for the endpoint actually serving traffic.

FieldMeaning
SANDNS names the certificate covers
IssuerCertificate authority that signed it
Not Before/AfterValidity window
Public keyKey clients use in TLS authentication

The legacy term “SSL certificate” persists, but modern web connections use TLS. Automate renewal and alert well before expiry.

Use openssl s_client or an external monitor to check the live chain, not just the file your deployment intended to install.

Cover photo by Stanislav Kondratiev on Pexels.

References

Primary documentation and specifications checked when this article was last updated.

TLSSecurityWeb

Related articles

All articles