• File: forever_gen_salt.js
  • Full Path: /home6/laduliya/test.mydthpay.com/node_modules/bcrypt/examples/forever_gen_salt.js
  • Date Modified: 10/26/1985 11:45 AM
  • File size: 165 bytes
  • MIME-type: text/plain
  • Charset: utf-8
var bcrypt = require('../bcrypt');

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