OpenSSL Command Generator
The ultimate cheat sheet for OpenSSL. Generate, convert, and inspect certificates instantly.
OpenSSL Command Generator
Generate RSA Private Key
openssl genrsa -out private.key 2048Generate CSR from Key
openssl req -new -key private.key -out request.csrConvert PEM to DER
openssl x509 -in cert.pem -outform der -out cert.derCheck Certificate Expiry
openssl x509 -enddate -noout -in cert.pemView Certificate Details
openssl x509 -in cert.pem -text -nooutCommon OpenSSL commands for key/cert/CSR operations. Copy to clipboard for quick use.