gpt4 book ai didi

c# - ASP.NET Core Identity - 创建用户 "manually"并提供密码哈希 - 如何正确生成哈希?

转载 作者:行者123 更新时间:2023-12-04 01:01:48 26 4
gpt4 key购买 nike

我必须手动创建用户:

var user = new User
{
Name = "Joe",
Email = "test@****.com",
PasswordHash = "gdfgdfgre2132143xcxzvb=="
}

context.Users.Add(user);

但问题是,当我尝试登录该帐户时,我的密码不起作用。

将我知道密码的用户帐户的密码哈希复制到 然后我将它粘贴到那个新用户并尝试使用相同的密码,但它不起作用 - password sign in failed
所以我想问 - 我的逻辑有什么问题,我怎样才能让它发挥作用?

它与SecurityStamp有关吗?

最佳答案

如果要手动添加用户,还应设置 NormalizedUserName属性(property) 。另外,最好使用IPasswordHasher<TUser> Interface对于散列密码:
注入(inject)的服务:

private readonly ApplicationDbContext _context;
public readonly IPasswordHasher<IdentityUser> _passwordHasher;

public HomeController( ApplicationDbContext dbContext, IPasswordHasher<IdentityUser> _passwordHasher)
{

this._context = dbContext;
this._passwordHasher = _passwordHasher;

}
我假设你的 User继承 IdentityUser , 这里我使用 IdentityUser例如:
IdentityUser applicationUser = new IdentityUser();
Guid guid = Guid.NewGuid();
applicationUser.Id = guid.ToString();
applicationUser.UserName = "Joe";
applicationUser.Email = "wx@hotmail.com";
applicationUser.NormalizedUserName = "wx@hotmail.com";

_context.Users.Add(applicationUser);


var hashedPassword = _passwordHasher.HashPassword(applicationUser, "YourPassword");
applicationUser.SecurityStamp = Guid.NewGuid().ToString();
applicationUser.PasswordHash = hashedPassword;

_context.SaveChanges();
您也可以使用 UserManager.CreateAsync使用给定密码在后备存储中创建指定用户:
var user = new IdentityUser { UserName = "Joe", Email = "wx@hotmail.com" };
var result = await _userManager.CreateAsync(user, "YourPassWord");
if (result.Succeeded)
{

}
注意:您应该提供 Email登录时的值。

关于c# - ASP.NET Core Identity - 创建用户 "manually"并提供密码哈希 - 如何正确生成哈希?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58180234/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com