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

Function dsaSync

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

Source from the content-addressed store, hash-verified

40 },
41
42 dsaSync(n) {
43 bench.start();
44 for (let i = 0; i < n; ++i) {
45 generateKeyPairSync('dsa', {
46 modulusLength: 1024,
47 divisorLength: 160,
48 });
49 }
50 bench.end(n);
51 },
52
53 dsaAsync(n) {
54 let remaining = n;

Callers

nothing calls this directly

Calls 3

generateKeyPairSyncFunction · 0.85
startMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected