4 instantiations of 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))
16 references to HMACSHA1
Microsoft.AspNetCore.Authentication.Twitter (1)
TwitterHandler.cs (1)
351var hash = HMACSHA1.HashData(key, Encoding.ASCII.GetBytes(signatureData));
Microsoft.AspNetCore.DataProtection (1)
AuthenticatedEncryption\ConfigurationModel\ManagedAlgorithmHelpers.cs (1)
17typeof(HMACSHA1),
Microsoft.AspNetCore.DataProtection.Tests (4)
AuthenticatedEncryption\ConfigurationModel\ManagedAuthenticatedEncryptorDescriptorDeserializerTests.cs (1)
15[InlineData(typeof(Aes), typeof(HMACSHA1))]
AuthenticatedEncryption\ConfigurationModel\ManagedAuthenticatedEncryptorDescriptorTests.cs (1)
40[InlineData(typeof(Aes), typeof(HMACSHA1))]
RegistryPolicyResolverTests.cs (2)
231["ValidationAlgorithmType"] = typeof(HMACSHA1).AssemblyQualifiedName 237ValidationAlgorithmType = typeof(HMACSHA1)
Microsoft.AspNetCore.Identity.FunctionalTests (2)
src\Identity\Extensions.Core\src\Rfc6238AuthenticationService.cs (2)
51Span<byte> hash = stackalloc byte[HMACSHA1.HashSizeInBytes]; 52res = HMACSHA1.TryHashData(key, modifierCombinedBytes, hash, out var written);
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))
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
886[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.HMACSHA1))]
netstandard (1)
netstandard.cs (1)
1883[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.HMACSHA1))]
System.Security.Cryptography (2)
System\Security\Cryptography\CryptoConfig.cs (1)
116Type HMACSHA1Type = typeof(System.Security.Cryptography.HMACSHA1);
System\Security\Cryptography\Helpers.cs (1)
355return HMACSHA1.HashSizeInBytes;
System.Security.Cryptography.Algorithms (1)
System.Security.Cryptography.Algorithms.cs (1)
29[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.HMACSHA1))]