我正在使用Java keytool。我已经从我的密钥库中导出了一个自签名的.pem证书。是否有直接从.pem文件(而不是keystore中的证书)查看证书详细信息的命令?


当前回答

除了使用keytool,您还可以使用该命令

openssl x509 -in certificate.pem -text

这应该适用于任何x509 .pem文件,只要你安装了openssl。

其他回答

除了使用keytool,您还可以使用该命令

openssl x509 -in certificate.pem -text

这应该适用于任何x509 .pem文件,只要你安装了openssl。

使用-printcert命令:

keytool -printcert -file certificate.pem