To list all available ciphers with their details:
openssl ciphers -v
To list unique cipher algorithms:
openssl list -cipher-algorithms
openssl rsa -inform DER -outform PEM -in privatekey.der -out privatekey.pem
openssl rsa -in privatekey.pem -out privatekey_nopass.pem
openssl rsa -inform PEM -outform DER -in privatekey.pem -out privatekey.der
openssl x509 -inform DER -outform PEM -in certificate.der -out certificate.pem
openssl x509 -inform PEM -outform DER -in certificate.pem -out certificate.der
X.509 certificates typically don't have passphrases. If you need to convert formats:
openssl x509 -in certificate.pem -out certificate.crt
openssl crl2pkcs7 -nocrl -certfile certificate.pem -out certificate.p7b
openssl pkcs7 -print_certs -in certificate.p7b -out certificate.pem
- Extract the certificates:
openssl pkcs7 -print_certs -in certificate.p7b -out certificate.pem
- Combine with the private key to create a PFX file:
openssl pkcs12 -export -in certificate.pem -inkey privatekey.key -out certificate.pfx -certfile CACert.pem
openssl pkcs12 -in certificate.pfx -out certificate.pem -nodes
openssl pkcs12 -export -out certificate.pfx -inkey privatekey.key -in certificate.crt -certfile CACert.crt
openssl genpkey -algorithm RSA -out privatekey.pem -pkeyopt rsa_keygen_bits:2048
openssl ecparam -name prime256v1 -genkey -noout -out eckey.pem
openssl req -new -key privatekey.pem -out request.csr -sha256
openssl x509 -in certificate.pem -text -noout
openssl x509 -noout -modulus -in certificate.pem | openssl md5
openssl rsa -noout -modulus -in privatekey.pem | openssl md5