I am developing an authentication in .Net Core. I have api to create a user with login and password.
I hashed the password, but I don't find any way to compare the hashed password, with the new input of the user.
I used the hash method given by microsoft :
    // generate a 128-bit salt using a secure PRNG
        byte[] salt = new byte[128 / 8];
        using (var rng = RandomNumberGenerator.Create())
        {
            rng.GetBytes(salt);
        }
    /// hashed will be stored in the DataBase as password
        string hashed = Convert.ToBase64String(KeyDerivation.Pbkdf2(
            password: password,
            salt: salt,
            prf: KeyDerivationPrf.HMACSHA1,
            iterationCount: 10000,
            numBytesRequested: 256 / 8));
When the user do a login, he send a login and a password. I have no idea how to compare this password, with the hashed password from the database ?
If I hash the password again, it will be a different hash, so that doesn't help
Any suggestion ? I am surprised that I don't find answers about this :(
Thanks !