11 references to CreateHMAC
System.Net.Security (3)
System\Net\NegotiateAuthenticationPal.ManagedNtlm.cs (3)
417
using (var hmac = IncrementalHash.
CreateHMAC
(HashAlgorithmName.MD5, ntlm2hash))
679
using (var hmacMic = IncrementalHash.
CreateHMAC
(HashAlgorithmName.MD5, exportedSessionKey))
722
using (var hmac = IncrementalHash.
CreateHMAC
(HashAlgorithmName.MD5, signingKey))
System.Security.Cryptography (7)
src\libraries\Common\src\System\Security\Cryptography\Asn1\Pkcs12\PfxAsn.manual.cs (1)
76
using (IncrementalHash hmac = IncrementalHash.
CreateHMAC
(hashAlgorithm, derived))
src\libraries\Common\src\System\Security\Cryptography\ECDiffieHellmanDerivation.cs (1)
194
using (IncrementalHash hasher = IncrementalHash.
CreateHMAC
(algorithmName, secret))
src\libraries\Common\src\System\Security\Cryptography\X509Certificates\X509CertificateLoader.Pkcs12.cs (1)
946
using (IncrementalHash mac = IncrementalHash.
CreateHMAC
(hashAlgorithm, macKey))
System\Security\Cryptography\HKDFManagedImplementation.cs (1)
50
using (IncrementalHash hmac = IncrementalHash.
CreateHMAC
(hashAlgorithmName, prk))
System\Security\Cryptography\IncrementalHash.cs (1)
357
return
CreateHMAC
(hashAlgorithm, (ReadOnlySpan<byte>)key);
System\Security\Cryptography\Rfc2898DeriveBytes.cs (1)
263
return IncrementalHash.
CreateHMAC
(hashAlgorithm, password);
System\Security\Cryptography\SP800108HmacCounterKdfImplementationManaged.cs (1)
41
using (IncrementalHash hash = IncrementalHash.
CreateHMAC
(hashAlgorithm, key))
System.Security.Cryptography.Pkcs (1)
src\libraries\Common\src\System\Security\Cryptography\Asn1\Pkcs12\PfxAsn.manual.cs (1)
76
using (IncrementalHash hmac = IncrementalHash.
CreateHMAC
(hashAlgorithm, derived))