SIPSorcery.SIP.SIPTLSChannel.DisplaySecurityLevel C# (CSharp) Method

DisplaySecurityLevel() private method

private DisplaySecurityLevel ( SslStream stream ) : void
stream System.Net.Security.SslStream
return void
        private void DisplaySecurityLevel(SslStream stream)
        {
            logger.Debug(String.Format("Cipher: {0} strength {1}", stream.CipherAlgorithm, stream.CipherStrength));
            logger.Debug(String.Format("Hash: {0} strength {1}", stream.HashAlgorithm, stream.HashStrength));
            logger.Debug(String.Format("Key exchange: {0} strength {1}", stream.KeyExchangeAlgorithm, stream.KeyExchangeStrength));
            logger.Debug(String.Format("Protocol: {0}", stream.SslProtocol));
        }