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