MCPcopy Index your code
hub / github.com/nodejs/node / dsaAsync

Function dsaAsync

benchmark/crypto/keygen.js:53–66  ·  view source on GitHub ↗
(n)

Source from the content-addressed store, hash-verified

51 },
52
53 dsaAsync(n) {
54 let remaining = n;
55 function done(err) {
56 assert.ifError(err);
57 if (--remaining === 0)
58 bench.end(n);
59 }
60 bench.start();
61 for (let i = 0; i < n; ++i)
62 generateKeyPair('dsa', {
63 modulusLength: 1024,
64 divisorLength: 160,
65 }, done);
66 },
67};
68
69function main({ n, method }) {

Callers

nothing calls this directly

Calls 2

generateKeyPairFunction · 0.85
startMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…