我正在使用Windows,并已被给予.cer文件。 我怎样才能查看它的细节?
OpenSSL将允许您查看它是否安装在您的系统上。
openssl x509 -in cerfile.cer -noout -text
.CER文件的格式可能需要您指定一个不同的编码格式才能显式调出。
openssl x509 -inform pem -in cerfile.cer -noout -text
要么
openssl x509 -inform der -in cerfile.cer -noout -text
在Windows系统上,您可以右键单击.cer文件并select打开。 这将让你查看大部分的元数据。
在Windows上,在运行窗口中使用certmgr.msc命令运行Windows证书pipe理器程序。 然后您可以导入您的证书并查看详细信息。
如果您使用Windows,则可以使用console util
certutil -dump <file>