How to create a security stamp value for asp.net identity (IUserSecurityStampStore)

后端 未结 3 1509
死守一世寂寞
死守一世寂寞 2021-02-18 16:56

In my MVC-5 application, I have to create security stamp values manually. The current implementation of the identity team seems to use a guid.

G         


        
相关标签:
3条回答
  • 2021-02-18 17:27

    ASP.NET Identity UserManager provides method UpdateSecurityStampAsync(string userId)which will automatically update users security-stamp. So that next time validateInterval ends user will be automatically logged-out and forced to sign.in again.

    UserManager.UpdateSecurityStampAsync(userId);
    
    0 讨论(0)
  • 2021-02-18 17:30

    Out of the documentation of the identity implementation for the entity-framework, it seems that it can be any random value:

    IdentityUser.SecurityStamp Property

    A guid seems therefore fine and the following code should be reliable also with future versions of asp.net identity.

    Guid.NewGuid().ToString("D")
    
    0 讨论(0)
  • 2021-02-18 17:35

    a bit late to the party, but these seem to work just fine:

            await _userManager.UpdateSecurityStampAsync(user);
            await _userManager.UpdateNormalizedEmailAsync(user);
            await _userManager.UpdateNormalizedUserNameAsync(user);
            await _userManager.SetLockoutEnabledAsync(user, true);
    
    0 讨论(0)
提交回复
热议问题