I'm building an application that uses a dotnet core API and identity core for user management. I was investigating my database and panicked when I saw that all strings in the PasswordHash
field started with the same characters: AQAAAAEAACcQAAAAE
, as I thought salting wasn't working properly. I realize now that salting is indeed working properly, as the rest of the password hash changes with every password, but now I'm curious about this mysterious prefix.
What does this password hash prefix used for in identity core?