2 Ways to Check TLS Certificate expiration Date with OpenSSL Command

We can quickly solve TLS or SSL certificate issues by checking the certificate’s expiration from the openssl command line. Today, let us see how to check certificate’s expiration date in 2 ways. The first one is to check the certificate on remote server side. The second is to check the certificate by PEM files. Check…

Create SSL Certificate With OpenSSL Command

A self-signed SSL certificate is a security certificate that is not signed by a certificate authority (CA). These certificates are easy to make and do not cost money. The Self-signed SSL certificate is mainly used for non-production applications or other experiments. Generate private key and self signed SSL certificate Run the following OpenSSL command to…

Understanding Two-Way SSL Authentication and Certificates

Two way SSL, also known as mutual SSL certificates, are SSL certificate where the server and the client, authenticates each other for a more robust security. Steps for a 2 way SSL handshake process In Two-Way SSL authentication, the client and server need to authenticate and validate each others identities. The authentication message exchange between…

OpenSSL Commands Cheat Sheet

OpenSSL is the true Swiss Army knife of certificate management, and just like with the real McCoy, we spend more time extracting the nail file when what we really want is the inflatable hacksaw. We will find an overview of the most commonly used commands below. Certificate requests and key generation with OpenSSL Typically, when…