如何使用 OpenSSL.net 创建证书
我用C#。 NET在编程中。我的问题是使用 OpenSSL.net 创建证书个人和 CA 并由 CA 的私钥签署个人证书。
我已经在我的项目中管理了集成的 OpenSSL.net,但我找不到创建证书的代码行。
如何使用 OpenSSL.net 创建证书?
I use C #. net in programming. My problem is using a OpenSSL.net to create certificate Personal and CA and signed personally certificate by a private key of CA.
I have already managed the integrated OpenSSL.net in my project, but I can not find the line of code to create the certificate.
How do I create a certificate with OpenSSL.net?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
X509Certificate
正在创建一个证书;cert.Write
将此证书写入文件。Try this one:
X509Certificate
is creating a certificate;cert.Write
writes this certificate to a file.你也可以尝试一下这个。
使用 X509CertificateAuthority 和 X509Certificate 类创建 SSL X509 证书。
http://manmoahn-openssl-net.blogspot.com/
You can try this one also.
Creating SSL X509 certificates using X509CertificateAuthority and X509Certificate classes.
http://manmoahn-openssl-net.blogspot.com/