OpenSSL Command
-
証明書ファイルの内容を確認
openssl x509 -text -noout -in /[FilePath]/[CertFile]
秘密鍵ファイルの内容を確認
openssl rsa -text -noout -in /[FilePath]/[KeyFile]
CSRファイルの内容を確認
openssl req -text -noout -in /[FilePath]/[CSRFile]
#秘密鍵ファイルpassword
openssl rsa -in old_server_key.pem -out new_server_key.pemopenssl x509 -in source.crt -out tmp.der -outform DER
openssl x509 -in tmp.der -inform DER -out dest.pem -outform pem