10 references to HMACMD5
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
885[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.HMACMD5))]
netstandard (1)
netstandard.cs (1)
1882[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.HMACMD5))]
System.Net.Security (5)
System\Net\NegotiateAuthenticationPal.ManagedNtlm.cs (5)
383int written = HMACMD5.HashData(pwHash, blob, hash); 384Debug.Assert(written == HMACMD5.HashSizeInBytes); 664Span<byte> sessionBaseKey = stackalloc byte[HMACMD5.HashSizeInBytes]; 665int sessionKeyWritten = HMACMD5.HashData(ntlm2hash, responseAsSpan.Slice(response.NtChallengeResponse.PayloadOffset, 16), sessionBaseKey); 666Debug.Assert(sessionKeyWritten == HMACMD5.HashSizeInBytes);
System.Security.Cryptography (2)
System\Security\Cryptography\CryptoConfig.cs (1)
115Type HMACMD5Type = typeof(System.Security.Cryptography.HMACMD5);
System\Security\Cryptography\HKDF.cs (1)
303return HMACMD5.HashSizeInBytes;
System.Security.Cryptography.Algorithms (1)
System.Security.Cryptography.Algorithms.cs (1)
28[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.HMACMD5))]