1
0

Video 103: Securely Storing Password: Part 1

This commit is contained in:
JayWll
2020-04-13 14:59:41 -06:00
parent 0be39f69ef
commit 015ea3619f
3 changed files with 21 additions and 0 deletions

View File

@@ -13,3 +13,18 @@ app.use(taskRouter)
app.listen(port, () => {
console.log('Server is up on port ' + port)
})
const bcrypt = require('bcryptjs')
const myFunction = async () => {
const password = 'Red12345!'
const hashedPassword = await bcrypt.hash(password, 8)
console.log(password)
console.log(hashedPassword)
const isMatch = await bcrypt.compare('red12345!', hashedPassword)
console.log(isMatch)
}
myFunction()