11 references to HashSizeInBytes
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\AuthenticationHelper.Digest.cs (1)
229
Debug.Assert(written == MD5.
HashSizeInBytes
);
System.Net.Security (1)
System\Net\NegotiateAuthenticationPal.ManagedNtlm.cs (1)
448
Debug.Assert(written == MD5.
HashSizeInBytes
);
System.Security.Cryptography (9)
src\libraries\Common\src\System\Security\Cryptography\RsaPaddingProcessor.cs (1)
78
digestLengthInBytes = MD5.
HashSizeInBytes
;
System\Security\Cryptography\CryptographicOperations.cs (1)
807
return MD5.
HashSizeInBytes
;
System\Security\Cryptography\MD5.cs (6)
68
byte[] buffer = GC.AllocateUninitializedArray<byte>(
HashSizeInBytes
);
110
if (destination.Length <
HashSizeInBytes
)
117
Debug.Assert(bytesWritten ==
HashSizeInBytes
);
146
if (destination.Length <
HashSizeInBytes
)
174
return LiteHashProvider.HashStream(HashAlgorithmNames.MD5,
HashSizeInBytes
, source);
234
if (destination.Length <
HashSizeInBytes
)
System\Security\Cryptography\MD5CryptoServiceProvider.cs (1)
26
Span<byte> destination = stackalloc byte[
HashSizeInBytes
];