在 OpenSSL 中,给定证书,如何获取签名算法的字符串表示形式?
X509_get_signature_type() 返回一个 int。我需要将其转换为字符串。
X509_get_signature_type() returns an int. I need to convert this to a string.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许是 OBJ_nid2ln() ?还有一些具有短名称的签名类型的 OBJ_nid2sn()。
OBJ_nid2ln() perhaps? There's also OBJ_nid2sn() for a few signature types which have short names.
我通过这种方式收到的签名算法字符串名称:
Signature algorithm string name I receive by this way: