Skip to content

Instantly share code, notes, and snippets.

@rpf5573
Created September 26, 2018 09:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rpf5573/ec5f5f9883c1db6cd9fdec601a690780 to your computer and use it in GitHub Desktop.
Save rpf5573/ec5f5f9883c1db6cd9fdec601a690780 to your computer and use it in GitHub Desktop.
multi thread test
const crypto = require('crypto');
const start = Date.now();
crypto.pbkdf2( 'a', 'b', 100000, 512, 'sha512', () => {
console.log( '1:', Date.now() - start );
});
// output
// 1: 1036
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment