6 references to HMACSHA1
Microsoft.AspNetCore.Cryptography.KeyDerivation (1)
PBKDF2\ManagedPbkdf2Provider.cs (1)
77return new HMACSHA1(passwordBytes);
Microsoft.Extensions.Identity.Core (3)
AuthenticatorTokenProvider.cs (1)
62using var hash = new HMACSHA1(keyBytes);
Rfc6238AuthenticationService.cs (2)
100using (var hashAlgorithm = new HMACSHA1(securityToken)) 115using (var hashAlgorithm = new HMACSHA1(securityToken))
System.Security.Cryptography (2)
System\Security\Cryptography\HMACSHA1.cs (2)
32: this(RandomNumberGenerator.GetBytes(BlockSize)) 52public HMACSHA1(byte[] key, bool useManagedSha1) : this(key)