OpenSSL.Net 创建证书 509x
我下载了这个包装器 OpenSSL.Net,我将集成到我的项目中,该项目包含一个 PKI 开发
- 创建证书人员
- 创建一个自签名 CA 证书
- 用 CA 签署了证书我找不到解决方案
I download this wrapper OpenSSL.Net and I shall integrate in my project which consists in a PKI devellop
- creates certificate personels
- creates a self signed CA certificate
- signed the certificate with the CA I can not find the solution
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 X509CertificateAuthority 和 X509Certificate 类以编程方式使用 OpenSSL.NET 创建 SSL 证书。
您可以在下面的链接中找到示例代码。
You can use X509CertificateAuthority and X509Certificate classes to create SSL certificates using OpenSSL.NET programmatically.
You can find the sample code at the below link.
如果您只是通过 Process.Start 使用 OpenSSL 本身,速度会快很多,如下所示:
创建 CA:
创建签名人员证书:
It will be a lot faster if you simply use OpenSSL itself through Process.Start like this:
Create CA:
Create Signed Personnel Certificates: