1 implementation of IPasswordHasher
Microsoft.Extensions.Identity.Core (1)
PasswordHasher.cs (1)
18
public class PasswordHasher<TUser> :
IPasswordHasher
<TUser> where TUser : class
6 references to IPasswordHasher
Microsoft.AspNetCore.Identity (2)
AspNetUserManager.cs (1)
33
IPasswordHasher
<TUser> passwordHasher,
IdentityServiceCollectionExtensions.cs (1)
96
services.TryAddScoped<
IPasswordHasher
<TUser>, PasswordHasher<TUser>>();
Microsoft.Extensions.Identity.Core (4)
IdentityServiceCollectionExtensions.cs (1)
43
services.TryAddScoped<
IPasswordHasher
<TUser>, PasswordHasher<TUser>>();
UserManager.cs (3)
73
IPasswordHasher
<TUser> passwordHasher,
154
/// The <see cref="
IPasswordHasher
{TUser}"/> used to hash passwords.
156
public
IPasswordHasher
<TUser> PasswordHasher { get; set; }