MonkeyFist.Services.Authenticator.HashedPasswordDoesNotMatch C# (CSharp) Method

HashedPasswordDoesNotMatch() public method

public HashedPasswordDoesNotMatch ( User user ) : bool
user MonkeyFist.Models.User
return bool
        public virtual bool HashedPasswordDoesNotMatch(User user)
        {
            return !BCryptHelper.CheckPassword(CurrentCredentials.Password, user.HashedPassword);
        }