Security · Networking
Certificate
Also known as: Digital Certificate, TLS Certificate, SSL Certificate
A cryptographically signed credential that proves identity. Browsers verify a website's certificate before establishing an HTTPS connection.
A digital certificate is a cryptographically signed credential that proves the identity of a server, organization, or individual. When you visit a website over HTTPS, the site presents a certificate issued by a trusted Certificate Authority — your browser verifies it before establishing an encrypted connection.
Types that come up most often in enterprise environments:
TLS/SSL certificates secure HTTPS connections for websites, APIs, and internal services. They're issued per domain and expire on a fixed schedule — typically every one to two years, though many organizations now use 90-day certificates with automated renewal.
Code signing certificates verify that software was published by a known entity and hasn't been modified. Required for Windows software distribution and increasingly common for scripts and deployment packages.
S/MIME certificates sign and encrypt email messages at the content level, separate from transport-layer TLS.
Client certificates authenticate users or devices to services as an alternative to passwords — common in zero-trust architectures and VPN configurations.
The operational risk: certificates expire, and an expired certificate causes hard failures — browsers display security warnings, services refuse connections. Certificate lifecycle management is one of those operational details that seems minor until it causes an outage. Organizations with many certificates should track expiration dates centrally, not rely on individual teams to remember.