从ASP迁移密码哈希.NET Identity 2.0到3.0



目前,我有密码哈希生成使用ASP。NET Identity 2.0。

是否可以使用新的ASP验证这些密码?NET Identity 3.0?

尝试将PasswordHasherCompatibilityMode设置为V2(以下代码未测试):

    public void ConfigureServices(IServiceCollection services)
    {
        services.Configure<PasswordHasherOptions>(options => options.CompatibilityMode = PasswordHasherCompatibilityMode.IdentityV2);
    }

请参见如何设置passwordhashhercompatibilitymode。ASP中的IdentityV3。NET 5身份?

相关内容

  • 没有找到相关文章

最新更新