Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@rpf5573
Last active September 26, 2018 10:27
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/7a08a96cb40be2a1e3ca878fca8d9f69 to your computer and use it in GitHub Desktop.
Save rpf5573/7a08a96cb40be2a1e3ca878fca8d9f69 to your computer and use it in GitHub Desktop.
const crypto = require('crypto');
const start = Date.now();
crypto.pbkdf2( 'a', 'b', 100000, 512, 'sha512', () => {
console.log( '1:', Date.now() - start );
});
crypto.pbkdf2( 'a', 'b', 100000, 512, 'sha512', () => {
console.log( '2:', Date.now() - start );
});
crypto.pbkdf2( 'a', 'b', 100000, 512, 'sha512', () => {
console.log( '3:', Date.now() - start );
});
crypto.pbkdf2( 'a', 'b', 100000, 512, 'sha512', () => {
console.log( '4:', Date.now() - start );
});
crypto.pbkdf2( 'a', 'b', 100000, 512, 'sha512', () => {
console.log( '5:', Date.now() - start );
});
// output
// 3: 2005
// 2: 2007
// 4: 2007
// 1: 2007
// 5: 3004
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment