Skip to content

Instantly share code, notes, and snippets.

@pid
Created December 23, 2014 23:17
Show Gist options
  • Select an option

  • Save pid/90cec5b3bdc091b6c42d to your computer and use it in GitHub Desktop.

Select an option

Save pid/90cec5b3bdc091b6c42d to your computer and use it in GitHub Desktop.
bcrypt speedtest
var bcrypt = require('bcrypt');
console.time('timer');
bcrypt.hashSync('bacon', bcrypt.genSaltSync(+process.argv[process.argv.length-1] || 16));
console.timeEnd('timer');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment