11 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)
448Debug.Assert(written == MD5.HashSizeInBytes);
System.Security.Cryptography (9)
src\libraries\Common\src\System\Security\Cryptography\RsaPaddingProcessor.cs (1)
78digestLengthInBytes = MD5.HashSizeInBytes;
System\Security\Cryptography\CryptographicOperations.cs (1)
807return MD5.HashSizeInBytes;
System\Security\Cryptography\MD5.cs (6)
68byte[] buffer = GC.AllocateUninitializedArray<byte>(HashSizeInBytes); 110if (destination.Length < HashSizeInBytes) 117Debug.Assert(bytesWritten == HashSizeInBytes); 146if (destination.Length < HashSizeInBytes) 174return LiteHashProvider.HashStream(HashAlgorithmNames.MD5, HashSizeInBytes, source); 234if (destination.Length < HashSizeInBytes)
System\Security\Cryptography\MD5CryptoServiceProvider.cs (1)
26Span<byte> destination = stackalloc byte[HashSizeInBytes];