用于创建 CA 的 C# 实用程序
我想用 C# 创建一个实用程序,以允许某人在 Windows 中轻松创建证书颁发机构 (CA)。 有什么想法/建议吗?
我知道我可以使用 OpenSSL 来做到这一点。 最后,我希望这个实用程序不仅仅能生成 CA。 我还想避免需要安装 OpenSSL 才能运行我的实用程序。
I'd like to create a utility in C# to allow someone to easily create a Certificate Authority (CA) in Windows. Any ideas/suggestions?
I know I can use OpenSSL to do this. In the end, I'll want this utility to do more than just generate a CA. I'd also like to avoid requiring the installation of OpenSSL in order to run my utility.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看 BouncyCastle http://www.bouncycastle.org/csharp/
Take a look at BouncyCastle http://www.bouncycastle.org/csharp/
由于 OpenSSL 是 Apache 许可的(即 BSD 风格),因此您可以简单地将其作为 DLL 与您的应用程序一起分发。 (也许您自己构建它,使其仅具有您需要的功能,并且全部位于单个 DLL 中。)然后使用 p/invoke 调用与该 DLL 进行对话。
(也许您甚至可以将本机代码直接链接到您的 .NET 可执行文件中?对此不确定。)
Since OpenSSL is Apache-licensed (i.e. BSD-style), you can simply distribute it as a DLL along with your application. (Maybe build it yourself to have only the features you need and all in a single DLL.) Then use p/invoke calls to talk with this DLL.
(Maybe you can even link the native code straight into your .NET executable? Not sure about that.)