MonkeyFist.Services.Authenticator.HashedPasswordDoesNotMatch C# (CSharp) 메소드

HashedPasswordDoesNotMatch() 공개 메소드

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