This documentation is archived and is not being maintained.
SslStream::HashStrength Property
Visual Studio 2010
Gets a value that identifies the strength of the hash algorithm used by this instance.
Assembly: System (in System.dll)
Property Value
Type: System::Int32An Int32 value that specifies the strength of the HashAlgorithmType algorithm, in bits. Valid values are 128 or 160.
The following code example displays the cryptography settings for the specified stream.
static void DisplaySecurityLevel( SslStream^ stream ) { Console::WriteLine( L"Cipher: {0} strength {1}", stream->CipherAlgorithm, stream->CipherStrength ); Console::WriteLine( L"Hash: {0} strength {1}", stream->HashAlgorithm, stream->HashStrength ); Console::WriteLine( L"Key exchange: {0} strength {1}", stream->KeyExchangeAlgorithm, stream->KeyExchangeStrength ); Console::WriteLine( L"Protocol: {0}", stream->SslProtocol ); }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: