Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--benchmark/crypto/keygen.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/benchmark/crypto/keygen.js b/benchmark/crypto/keygen.js
index e055a02cd2b..373be24c80e 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);
},
};