SslStream.CipherAlgorithm 属性

定义

获取一个值,该值确定此 SslStream 使用的批量加密算法。

C#
public virtual System.Security.Authentication.CipherAlgorithmType CipherAlgorithm { get; }

属性值

一个 值,该值标识此 SslStream使用的批量加密算法。

例外

CipherAlgorithm 属性是在身份验证过程未完成时访问的或者身份验证过程失败。

示例

下面的代码示例显示指定流的加密设置。

C#
static void DisplaySecurityLevel(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);
}

注解

使用枚举值Null构造SslStream实例时,NoEncryption属性需要 CipherAlgorithm 值。

Windows Server 2003 和 Windows XP 不支持 Null 值。 因此, Null 即使值用于构造 SslStream 实例,属性 EncryptionPolicy 也将为 None。 该值 Null 仅在 Windows Vista 及更高版本上返回。

适用于

产品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1