weblogin1/node_modules/bcrypt/examples/forever_gen_salt.js
Kántor Dániel 0881028595 feltoltes
2023-01-27 11:54:37 +01:00

9 lines
165 B
JavaScript

var bcrypt = require('../bcrypt');
(function printSalt() {
bcrypt.genSalt(10, function(err, salt) {
console.log('salt: ' + salt);
printSalt();
});
})()