WCF netTcpBinding Windows 安全 EncryptAndSign
我将 netTcpBinding 与“传输”安全性(“Windows”凭据和“EncryptAndSign”保护)一起使用。 我已经知道 Kerberos(在 SPNEGO 之后)用于验证客户端和客户端的身份。服务器(同一 Windows 域中的两台计算机)。 我想知道用于加密和签署 TCP 传输通道的算法是什么,因为没有配置选择(“消息”安全性具有“algorithmSuite”配置参数,但不适用于“传输”安全)
谢谢
I'm using netTcpBinding with "Transport" security ("Windows" credentials & "EncryptAndSign" protection).
I already know that Kerberos (after SPNEGO) is used to authenticate client & server (both machines on the same Windows domain).
I'd like to know what is/are the algorythm(s) used then to encrypt and sign the TCP Transport channel since there is no config choice ("Message" security has "algorithmSuite" config parameter but it's not available for "Transport" security)
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NetTcpBinding 类使用 TCP 进行消息传输。传输模式的安全性是通过在 TCP 上实施传输层安全性 (TLS) 来提供的。 TLS 实现由操作系统提供。
您还可以通过将 TcpTransportSecurity 类的 ClientCredentialType 属性设置为 TcpClientCredentialType 值之一来指定客户端的凭据类型,如以下代码所示。
C#
更多信息可以在这里找到:http://msdn.microsoft.com/en-us /library/ms729700
希望有帮助。
The NetTcpBinding class uses TCP for message transport. Security for the transport mode is provided by implementing Transport Layer Security (TLS) over TCP. The TLS implementation is provided by the operating system.
You can also specify the client's credential type by setting the ClientCredentialType property of the TcpTransportSecurity class to one of the TcpClientCredentialType values, as shown in the following code.
C#
More info can be found here: http://msdn.microsoft.com/en-us/library/ms729700
Hope that helps.