9 references to CreateHMAC
System.Net.Security (3)
System\Net\NegotiateAuthenticationPal.ManagedNtlm.cs (3)
471using (var hmac = IncrementalHash.CreateHMAC(HashAlgorithmName.MD5, ntlm2hash)) 733using (var hmacMic = IncrementalHash.CreateHMAC(HashAlgorithmName.MD5, exportedSessionKey)) 776using (var hmac = IncrementalHash.CreateHMAC(HashAlgorithmName.MD5, signingKey))
System.Security.Cryptography (5)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\Asn1\Pkcs12\PfxAsn.manual.cs (1)
76using (IncrementalHash hmac = IncrementalHash.CreateHMAC(hashAlgorithm, derived))
src\runtime\src\libraries\Common\src\System\Security\Cryptography\X509Certificates\X509CertificateLoader.Pkcs12.cs (1)
1257using (IncrementalHash mac = IncrementalHash.CreateHMAC(hashAlgorithm, macKey))
System\Security\Cryptography\HKDFManagedImplementation.cs (1)
49using (IncrementalHash hmac = IncrementalHash.CreateHMAC(hashAlgorithmName, prk))
System\Security\Cryptography\IncrementalHash.cs (1)
419return CreateHMAC(hashAlgorithm, (ReadOnlySpan<byte>)key);
System\Security\Cryptography\Rfc2898DeriveBytes.cs (1)
266return IncrementalHash.CreateHMAC(hashAlgorithm, password);
System.Security.Cryptography.Pkcs (1)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\Asn1\Pkcs12\PfxAsn.manual.cs (1)
76using (IncrementalHash hmac = IncrementalHash.CreateHMAC(hashAlgorithm, derived))