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
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(string userId)
validateInterval
UserManager.UpdateSecurityStampAsync(userId);