如何使用 openssl 从 PKCS7.p7b 证书文件中读取证书文件?
我正在获取 PKCS7 文件 (p7b)。我想读取文件的内容并提取X509结构中的证书。
如何使用 openssl 库从 PKCS 容器访问单个证书?
I am getting PKCS7 file (p7b). I want to read the content of the file and extract certificate in X509 structure.
How can I access individual Certificate from the PKCS container using openssl library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用了以下程序:
它基于
openssl-1.0.0d/apps/pkcs7.c
并且很容易编译(在 Linux 或 Mac OS X 上)(前提是将其保存为 readp7.c)。 c):您可以使用 openssl 创建文件并像这样读取它们:
I've used the following program:
It's based on
openssl-1.0.0d/apps/pkcs7.c
and it's easily compiled (on Linux or Mac OS X) with (provided you save it as readp7.c):You can create files with openssl and read them like this: