码迷,mamicode.com
首页 > 其他好文 > 详细

获取SSL证书的指纹

时间:2017-09-07 23:04:40      阅读:451      评论:0      收藏:0      [点我收藏+]

标签:ssl   certificate   openssl   fingerprint   certutil   

每一张SSL证书都有指纹(fingerprint)信息,若要获取,可以通过openssl或者certutil工具,分别在非Windows和Windows平台下使用


基本语法:

openssl x509 -fingerprint -in cerfile.crt

若是报无法读取文件,那么极有可能是未指定格式,可尝试如下

openssl x509 -fingerprint -in cerfile.crt -inform PEM
openssl x509 -fingerprint -in cerfile.crt -inform DER

若是需要指定显示SHA1或者SHA256算法编码的指纹信息,则追加参数

openssl x509 -fingerprint -sha1 -in cerfile.crt
openssl x509 -fingerprint -sha256 -in cerfile.crt



呃,Windows下面的certutil好像不能单独输出某一项,只能全部信息一起输出

certutil -dump certfile.crt

嗯,certutil -dump输出尾巴部分的 “证书哈希(md5):” 和 “证书哈希(sha1):” 就是指纹信息啦


获取SSL证书的指纹

标签:ssl   certificate   openssl   fingerprint   certutil   

原文地址:http://dashdotdash.blog.51cto.com/13271971/1963485

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!