Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- MySQL
- nestjs
- typeORM
- react
- dfs
- class
- Express
- TypeScript
- Bull
- GIT
- MongoDB
- Dinosaur
- 게임
- 자료구조
- 공룡게임
- cookie
- AWS
- OCR
- game
- Queue
- JavaScript
- Nest.js
- 정렬
- Python
- jest
- mongoose
- nodejs
- flask
- Sequelize
Archives
- Today
- Total
목록문제해결 (1)
포시코딩
[bcrypt] Error: Invalid salt. Salt must be in the form of: $Vers$log2(NumRounds)$saltvalue
문제 발견 async #encryptPsword(userInfo) { // const saltRounds = 10; const saltRounds = process.env.SALT; console.log('saltRounds: ' + saltRounds); return new Promise((resolve, reject) => { bcrypt.hash(userInfo.password, saltRounds, (err, hash)=>{ if (err) { reject(`${err}`); } else { userInfo.password = hash; resolve(userInfo); } }); }); }; salt에 그대로 10을 넣어 쓰면 잘되는데, dotenv로 불러오는 값을 넣으면 아래와 같은 에러가 나..
Node.js
2022. 12. 21. 11:38