문자열의 해쉬 값을 인코딩

import crypto from 'crypto';
crypto
  .createHash('sha512')
  .update(mystr)
  .digest('base64')

bcrypt 모듈 활용