I've always stored the password hash and salt for most of my authentication sub-systems, but I notice the default IdentityUser
class only has a hash and a Security
stamp field, but no salt value.
Has storing the salt value fallen by the wayside, and does SecurityStamp
add any safety in this regard, or should be extend the user and add a HashSalt
field?