1 type derived from PasswordHasher
Microsoft.AspNetCore.Identity.Test (1)
PasswordHasherTest.cs (1)
168private sealed class PasswordHasher : PasswordHasher<object>
3 instantiations of PasswordHasher
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (1)
src\Identity\test\Shared\MockHelpers.cs (1)
45var userManager = new UserManager<TUser>(store, options.Object, new PasswordHasher<TUser>(),
Microsoft.AspNetCore.Identity.InMemory.Test (1)
src\Identity\test\Shared\MockHelpers.cs (1)
45var userManager = new UserManager<TUser>(store, options.Object, new PasswordHasher<TUser>(),
Microsoft.AspNetCore.Identity.Test (1)
src\Identity\test\Shared\MockHelpers.cs (1)
45var userManager = new UserManager<TUser>(store, options.Object, new PasswordHasher<TUser>(),
5 references to PasswordHasher
Microsoft.AspNetCore.Identity (1)
IdentityServiceCollectionExtensions.cs (1)
95services.TryAddScoped<IPasswordHasher<TUser>, PasswordHasher<TUser>>();
Microsoft.AspNetCore.Identity.Test (2)
IdentityBuilderTest.cs (2)
192var hasher = provider.GetRequiredService<IPasswordHasher<PocoUser>>() as PasswordHasher<PocoUser>;
Microsoft.Extensions.Identity.Core (2)
IdentityServiceCollectionExtensions.cs (1)
42services.TryAddScoped<IPasswordHasher<TUser>, PasswordHasher<TUser>>();
PasswordHasher.cs (1)
42/// Creates a new instance of <see cref="PasswordHasher{TUser}"/>.