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.
我目前有一个使用 netTcpBinding 运行的开放式 WCF 服务;但是,我需要加密这个频道。WCF 是否支持 3DES,或者我应该只在我的授权客户端/服务器上处理加密/解密?
谢谢;
我相信确实如此,通过消息安全性。将 algorithmSuite 属性设置为您希望使用的算法。您可以在此处查看可用的算法:
http://msdn.microsoft.com/en-us/library/system.servicemodel.security.securityalgorithmsuite_members.aspx
支持多种 TripleDES 算法。我希望其中一个就足够了。我相信 SecurityAlgorithmSuite 类可能会被扩展,因此可以实现自己的算法。但是我不确定您将如何使用它...我不确定默认配置部分是否支持第三方算法。