Command
opensslExplanation
OpenSSL is a cryptographic library providing SSL/TLS encryption and certificate management.
Examples
Generate self-signed certificate
openssl req -new -x509 -days 365 -nodes -out cert.pem -keyout key.pemView certificate details
openssl x509 -in cert.pem -text -nooutTest SSL connection
openssl s_client -connect example.com:443