diff --git a/benchmark/crypto/keygen.js b/benchmark/crypto/keygen.js index e055a02cd2b116..373be24c80e5ab 100644 --- a/benchmark/crypto/keygen.js +++ b/benchmark/crypto/keygen.js @@ -43,8 +43,8 @@ const methods = { bench.start(); for (let i = 0; i < n; ++i) { generateKeyPairSync('dsa', { - modulusLength: 512, - divisorLength: 256, + modulusLength: 1024, + divisorLength: 160, }); } bench.end(n); @@ -60,8 +60,8 @@ const methods = { bench.start(); for (let i = 0; i < n; ++i) generateKeyPair('dsa', { - modulusLength: 512, - divisorLength: 256, + modulusLength: 1024, + divisorLength: 160, }, done); }, };