已知:一个个人证书文件 test.pfx
求:如何通过openssl查看其对应证书的序列号信息?
踩坑之:unable to load certificate!
openssl x509 -in xxx.cert -noout -serial 命令可查看证书序列号,但是这个-in 的输入必须是私钥文件或者是公钥证书文件,pfx文件不能直接读取,会报错:unable to load certificate!
处理步骤1、从pfx文件提取私钥文件test.pem
openssl pkcs12 -in test.pfx -nodes -out test.pem 输入正确的pfx密码,如下图所示:
步骤2:openssl x509 -in test.pem -noout -serial查看序列号
文本查看私钥文件内容: openssl x509 -in test.pem -noout -text