将PEM格式的x509证书转换为Openssl的x509结构格式

发布于 2024-11-14 04:44:24 字数 164 浏览 3 评论 0原文

有人可以帮我将 X509 证书转换为 x509 结构格式(如 Openssl 中的格式) 我必须从 PEM 格式的 x509 证书获取 MPLAB 中的 tbscertificate 字段(以 x509 ASN1 DER 表示法表示)。 我还想知道 Microchip 是否提供并测试 x509 证书验证的应用程序

Can somebody help me convert an X509 certificate to the x509 structure format (like in Openssl)
I have to get the tbscertificate field (present in x509 ASN1 DER notation) in MPLAB from a PEM formatted x509 certificate.
I also want to know whether Microchip provides and test applications for x509 certificate validation

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

留一抹残留的笑 2024-11-21 04:44:24

我希望下面的代码能给你一个想法..
如果你的PEM没有密码......请参考openssl中的X509.h头文件

X509* oCertificate=NULL;
FILE *lFp=NULL; 
lFp=fopen(iFilePath,"rb");
if(lFp==NULL)
{          
    oCertificate=NULL;
    cout <<("Error File cannot be opened(file missing) ")<<iFilePath ;             
}
else 
{           
    oCertificate = PEM_read_X509(lFp, NULL, NULL, NULL);
    fclose(lFp);
}   
return oCertificate;

I hope the below code will give u an idea ..
If your PEM doesnt have password ...... refer X509.h header file in openssl

X509* oCertificate=NULL;
FILE *lFp=NULL; 
lFp=fopen(iFilePath,"rb");
if(lFp==NULL)
{          
    oCertificate=NULL;
    cout <<("Error File cannot be opened(file missing) ")<<iFilePath ;             
}
else 
{           
    oCertificate = PEM_read_X509(lFp, NULL, NULL, NULL);
    fclose(lFp);
}   
return oCertificate;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文