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)
383
int written =
HMACMD5
.HashData(pwHash, blob, hash);
384
Debug.Assert(written ==
HMACMD5
.HashSizeInBytes);
664
Span<byte> sessionBaseKey = stackalloc byte[
HMACMD5
.HashSizeInBytes];
665
int sessionKeyWritten =
HMACMD5
.HashData(ntlm2hash, responseAsSpan.Slice(response.NtChallengeResponse.PayloadOffset, 16), sessionBaseKey);
666
Debug.Assert(sessionKeyWritten ==
HMACMD5
.HashSizeInBytes);
System.Security.Cryptography (2)
System\Security\Cryptography\CryptoConfig.cs (1)
115
Type HMACMD5Type = typeof(System.Security.Cryptography.
HMACMD5
);
System\Security\Cryptography\Helpers.cs (1)
383
return
HMACMD5
.HashSizeInBytes;
System.Security.Cryptography.Algorithms (1)
System.Security.Cryptography.Algorithms.cs (1)
28
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.
HMACMD5
))]