Exemple #1
0
 static void DisplaySecurityLevel(System.Net.Security.SslStream stream)
 {
     Console.WriteLine("Cipher: {0} strength {1}", stream.CipherAlgorithm, stream.CipherStrength);
     Console.WriteLine("Hash: {0} strength {1}", stream.HashAlgorithm, stream.HashStrength);
     Console.WriteLine("Key exchange: {0} strength {1}", stream.KeyExchangeAlgorithm, stream.KeyExchangeStrength);
     Console.WriteLine("Protocol: {0}", stream.SslProtocol);
 }
Exemple #2
0
 static void DisplaySecurityServices(System.Net.Security.SslStream stream)
 {
     Console.WriteLine("Is authenticated: {0}", stream.IsAuthenticated);
     Console.WriteLine("IsSigned: {0}", stream.IsSigned);
     Console.WriteLine("Is Encrypted: {0}", stream.IsEncrypted);
 }