2 instantiations of PasswordHasherOptions
Microsoft.AspNetCore.Identity.Test (1)
PasswordHasherTest.cs (1)
207public PasswordHasherOptions Value { get; } = new PasswordHasherOptions();
Microsoft.Extensions.Identity.Core (1)
PasswordHasher.cs (1)
39private static readonly PasswordHasherOptions DefaultOptions = new PasswordHasherOptions();
6 references to PasswordHasherOptions
Microsoft.AspNetCore.Identity.Test (3)
PasswordHasherTest.cs (3)
175private static IOptions<PasswordHasherOptions> BuildOptions(PasswordHasherCompatibilityMode? compatMode, int? iterCount) 205private class PasswordHasherOptionsAccessor : IOptions<PasswordHasherOptions> 207public PasswordHasherOptions Value { get; } = new PasswordHasherOptions();
Microsoft.Extensions.Identity.Core (3)
PasswordHasher.cs (3)
39private static readonly PasswordHasherOptions DefaultOptions = new PasswordHasherOptions(); 45public PasswordHasher(IOptions<PasswordHasherOptions>? optionsAccessor = null) 47var options = optionsAccessor?.Value ?? DefaultOptions;