1 implementation of IPasswordHasher
Microsoft.Extensions.Identity.Core (1)
PasswordHasher.cs (1)
18
public class PasswordHasher<TUser> :
IPasswordHasher
<TUser> where TUser : class
8 references to IPasswordHasher
Microsoft.AspNetCore.Identity (2)
AspNetUserManager.cs (1)
33
IPasswordHasher
<TUser> passwordHasher,
IdentityServiceCollectionExtensions.cs (1)
95
services.TryAddScoped<
IPasswordHasher
<TUser>, PasswordHasher<TUser>>();
Microsoft.AspNetCore.Identity.Test (2)
IdentityBuilderTest.cs (1)
192
var hasher = provider.GetRequiredService<
IPasswordHasher
<PocoUser>>() as PasswordHasher<PocoUser>;
UserManagerTest.cs (1)
569
var hasher = new Mock<
IPasswordHasher
<PocoUser>>();
Microsoft.Extensions.Identity.Core (4)
IdentityServiceCollectionExtensions.cs (1)
42
services.TryAddScoped<
IPasswordHasher
<TUser>, PasswordHasher<TUser>>();
UserManager.cs (3)
71
IPasswordHasher
<TUser> passwordHasher,
150
/// The <see cref="
IPasswordHasher
{TUser}"/> used to hash passwords.
152
public
IPasswordHasher
<TUser> PasswordHasher { get; set; }