Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用 c# 开发了一个桌面应用程序,它通过互联网在远程服务器上使用 WCF 我需要使用 SSL 保护 WCF 服务器和桌面应用程序(客户端)之间的通信。我的问题是如何在客户端安装我的应用程序时自动或通过一些代码在客户端机器中安装 SSL。提前致谢 。
我从您的上述评论中了解到,您希望保护通过渠道流动的数据。
这可以通过 c# 代码实现 - 通过将 *.cert 文件作为项目的一部分并传入 X509Certificate2 类 .ctor 来实现。
详情请参考之前的smiliar帖子——
问题 SSL 证书 C#
希望这对你有帮助!