以下綁定使用什麼加密算法和密鑰長度?什麼是使用TcpClientCredentialType.Windows時的加密強度?
NetTcpBinding binding = new NetTcpBinding();
binding.Security.Mode = SecurityMode.Transport;
binding.Security.Transport.ClientCredentialType = TcpClientCredentialType.Windows;
以下綁定使用什麼加密算法和密鑰長度?什麼是使用TcpClientCredentialType.Windows時的加密強度?
NetTcpBinding binding = new NetTcpBinding();
binding.Security.Mode = SecurityMode.Transport;
binding.Security.Transport.ClientCredentialType = TcpClientCredentialType.Windows;
使用Windows憑據意味着它將使用您的Windows憑據,它用於登錄Windows作爲客戶端標識符,它將使用Windows驗證。 此MSDN鏈接(http://msdn.microsoft.com/en-us/library/ms733836.aspx)可能對您有所幫助。
我可能會錯過一些東西......它在哪裏告訴我什麼加密算法用於windows creds? – galets
我可以看到,當使用TLS時,密鑰長度將是證書上的密鑰長度(當ClientCredentialType是證書時)。我的問題特別是關於什麼時候ClientCredentialType是Windows。 – galets