7 references to HashSizeInBytes
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\AuthenticationHelper.Digest.cs (1)
229Debug.Assert(written == MD5.HashSizeInBytes);
System.Net.Security (1)
System\Net\NegotiateAuthenticationPal.ManagedNtlm.cs (1)
502Debug.Assert(written == MD5.HashSizeInBytes);
System.Security.Cryptography (5)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\RsaPaddingProcessor.cs (1)
78digestLengthInBytes = MD5.HashSizeInBytes;
System\Security\Cryptography\CryptographicOperations.cs (1)
1132return MD5.HashSizeInBytes;
System\Security\Cryptography\HashProviderDispenser.Windows.cs (1)
202digestSizeInBytes = MD5.HashSizeInBytes;
System\Security\Cryptography\MD5.cs (1)
24static int IHashStatic.HashSizeInBytes => HashSizeInBytes;
System\Security\Cryptography\MD5CryptoServiceProvider.cs (1)
26Span<byte> destination = stackalloc byte[HashSizeInBytes];