Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/wcf/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Wcf 使用TcpClientCredentialType.Windows时,加密强度是多少?_Wcf_Wcf Binding_Wcf Security_Net.tcp - Fatal编程技术网

Wcf 使用TcpClientCredentialType.Windows时,加密强度是多少?

Wcf 使用TcpClientCredentialType.Windows时,加密强度是多少?,wcf,wcf-binding,wcf-security,net.tcp,Wcf,Wcf Binding,Wcf Security,Net.tcp,以下绑定使用什么加密算法和密钥长度 NetTcpBinding binding = new NetTcpBinding(); binding.Security.Mode = SecurityMode.Transport; binding.Security.Transport.ClientCredentialType = TcpClientCredentialType.Windows; : NetTcpBinding类使用TCP进行消息传输。传输模式的安全性是通过在TCP上实现传输层安全性(TL

以下绑定使用什么加密算法和密钥长度

NetTcpBinding binding = new NetTcpBinding();
binding.Security.Mode = SecurityMode.Transport;
binding.Security.Transport.ClientCredentialType = TcpClientCredentialType.Windows;
:

NetTcpBinding类使用TCP进行消息传输。传输模式的安全性是通过在TCP上实现传输层安全性(TLS)来提供的。TLS实现由操作系统提供

因此,这将取决于您的操作系统所使用的TLS版本。对于服务器2008 R2,使用


希望有帮助。

使用windows凭据意味着它将使用您的windows凭据作为客户端标识符登录windows,它将使用windows验证。
此MSDN链接(http://msdn.microsoft.com/en-us/library/ms733836.aspx)可能会帮助您。

我可以看到当使用TLS时,密钥长度将是证书上的密钥长度(当ClientCredentialType为certificate时)。我的问题是关于什么时候ClientCredentialType是Windows。我可能遗漏了什么。。。它在哪里告诉我windows creds使用了什么加密算法?