openssl 如何从pfx格式证书 获取证书序列号信息
openssl
传输层安全性/安全套接层及其加密库
项目地址:https://gitcode.com/gh_mirrors/ope/openssl
免费下载资源
·
已知:一个个人证书文件 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
GitHub 加速计划 / ope / openssl
25.13 K
9.99 K
下载
传输层安全性/安全套接层及其加密库
最近提交(Master分支:1 个月前 )
fd39d1c8
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/25095)
3 个月前
ae87c488
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/25095)
3 个月前
更多推荐
已为社区贡献8条内容
所有评论(0)