6 references to IdentityV3
Microsoft.AspNetCore.Identity.Test (3)
PasswordHasherTest.cs (3)
51
[InlineData(PasswordHasherCompatibilityMode.
IdentityV3
)]
97
var hasher = new PasswordHasher(compatMode: PasswordHasherCompatibilityMode.
IdentityV3
);
159
var hasher = new PasswordHasher(compatMode: PasswordHasherCompatibilityMode.
IdentityV3
);
Microsoft.Extensions.Identity.Core (3)
PasswordHasher.cs (2)
56
case PasswordHasherCompatibilityMode.
IdentityV3
:
184
return (_compatibilityMode == PasswordHasherCompatibilityMode.
IdentityV3
)
PasswordHasherOptions.cs (1)
21
public PasswordHasherCompatibilityMode CompatibilityMode { get; set; } = PasswordHasherCompatibilityMode.
IdentityV3
;