해쉬용 모듈

bcrypt

해쉬화

bcrypt.hash

const password = await bcrypt.hash(this.password, 5);

비교

bcrypt.compare

const isPasswordSame = await bcrypt.compare(password, user.password);
  if (!isPasswordSame) {
    ...
  }