10 references to CreateHMAC
System.Net.Security (3)
System\Net\NegotiateAuthenticationPal.ManagedNtlm.cs (3)
417using (var hmac = IncrementalHash.CreateHMAC(HashAlgorithmName.MD5, ntlm2hash)) 679using (var hmacMic = IncrementalHash.CreateHMAC(HashAlgorithmName.MD5, exportedSessionKey)) 722using (var hmac = IncrementalHash.CreateHMAC(HashAlgorithmName.MD5, signingKey))
System.Security.Cryptography (6)
src\libraries\Common\src\System\Security\Cryptography\Asn1\Pkcs12\PfxAsn.manual.cs (1)
84using (IncrementalHash hmac = IncrementalHash.CreateHMAC(hashAlgorithm, derived))
src\libraries\Common\src\System\Security\Cryptography\ECDiffieHellmanDerivation.cs (1)
194using (IncrementalHash hasher = IncrementalHash.CreateHMAC(algorithmName, secret))
System\Security\Cryptography\HKDF.cs (1)
161using (IncrementalHash hmac = IncrementalHash.CreateHMAC(hashAlgorithmName, prk))
System\Security\Cryptography\IncrementalHash.cs (1)
342return CreateHMAC(hashAlgorithm, (ReadOnlySpan<byte>)key);
System\Security\Cryptography\Rfc2898DeriveBytes.cs (1)
263return IncrementalHash.CreateHMAC(hashAlgorithm, password);
System\Security\Cryptography\SP800108HmacCounterKdfImplementationManaged.cs (1)
41using (IncrementalHash hash = IncrementalHash.CreateHMAC(hashAlgorithm, key))
System.Security.Cryptography.Pkcs (1)
src\libraries\Common\src\System\Security\Cryptography\Asn1\Pkcs12\PfxAsn.manual.cs (1)
84using (IncrementalHash hmac = IncrementalHash.CreateHMAC(hashAlgorithm, derived))