5 lines
176 B
JavaScript
5 lines
176 B
JavaScript
const bcrypt = require('bcrypt');
|
|
const password = 'h$tg@g5aga$ra1E3$C-yHW$-BA@DF2@Grfa!3#';
|
|
const hash = bcrypt.hashSync(password, 10);
|
|
console.log('HASH_GENERATED=' + hash);
|