-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
crypto: reconcile oneshot sign/verify sync and async implementations
PR-URL: #37816 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
- Loading branch information
Showing
9 changed files
with
270 additions
and
255 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
'use strict'; | ||
|
||
const common = require('../common.js'); | ||
const crypto = require('crypto'); | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
const fixtures_keydir = path.resolve(__dirname, '../../test/fixtures/keys/'); | ||
const keyFixtures = { | ||
publicKey: fs.readFileSync(`${fixtures_keydir}/ec_p256_public.pem`) | ||
.toString(), | ||
privateKey: fs.readFileSync(`${fixtures_keydir}/ec_p256_private.pem`) | ||
.toString() | ||
}; | ||
|
||
const data = crypto.randomBytes(256); | ||
|
||
let pems; | ||
let keyObjects; | ||
|
||
function getKeyObject({ privateKey, publicKey }) { | ||
return { | ||
privateKey: crypto.createPrivateKey(privateKey), | ||
publicKey: crypto.createPublicKey(publicKey) | ||
}; | ||
} | ||
|
||
const bench = common.createBenchmark(main, { | ||
mode: ['sync', 'async-serial', 'async-parallel'], | ||
keyFormat: ['pem', 'keyObject', 'pem.unique', 'keyObject.unique'], | ||
n: [1e3], | ||
}); | ||
|
||
function measureSync(n, privateKey, publicKey, keys) { | ||
bench.start(); | ||
for (let i = 0; i < n; ++i) { | ||
crypto.verify( | ||
'sha256', | ||
data, | ||
{ key: publicKey || keys[i].publicKey, dsaEncoding: 'ieee-p1363' }, | ||
crypto.sign( | ||
'sha256', | ||
data, | ||
{ key: privateKey || keys[i].privateKey, dsaEncoding: 'ieee-p1363' })); | ||
} | ||
bench.end(n); | ||
} | ||
|
||
function measureAsyncSerial(n, privateKey, publicKey, keys) { | ||
let remaining = n; | ||
function done() { | ||
if (--remaining === 0) | ||
bench.end(n); | ||
else | ||
one(); | ||
} | ||
|
||
function one() { | ||
crypto.sign( | ||
'sha256', | ||
data, | ||
{ | ||
key: privateKey || keys[n - remaining].privateKey, | ||
dsaEncoding: 'ieee-p1363' | ||
}, | ||
(err, signature) => { | ||
crypto.verify( | ||
'sha256', | ||
data, | ||
{ | ||
key: publicKey || keys[n - remaining].publicKey, | ||
dsaEncoding: 'ieee-p1363' | ||
}, | ||
signature, | ||
done); | ||
}); | ||
} | ||
bench.start(); | ||
one(); | ||
} | ||
|
||
function measureAsyncParallel(n, privateKey, publicKey, keys) { | ||
let remaining = n; | ||
function done() { | ||
if (--remaining === 0) | ||
bench.end(n); | ||
} | ||
bench.start(); | ||
for (let i = 0; i < n; ++i) { | ||
crypto.sign( | ||
'sha256', | ||
data, | ||
{ key: privateKey || keys[i].privateKey, dsaEncoding: 'ieee-p1363' }, | ||
(err, signature) => { | ||
crypto.verify( | ||
'sha256', | ||
data, | ||
{ key: publicKey || keys[i].publicKey, dsaEncoding: 'ieee-p1363' }, | ||
signature, | ||
done); | ||
}); | ||
} | ||
} | ||
|
||
function main({ n, mode, keyFormat }) { | ||
pems ||= [...Buffer.alloc(n)].map(() => ({ | ||
privateKey: keyFixtures.privateKey, | ||
publicKey: keyFixtures.publicKey | ||
})); | ||
keyObjects ||= pems.map(getKeyObject); | ||
|
||
let privateKey, publicKey, keys; | ||
|
||
switch (keyFormat) { | ||
case 'keyObject': | ||
({ publicKey, privateKey } = keyObjects[0]); | ||
break; | ||
case 'pem': | ||
({ publicKey, privateKey } = pems[0]); | ||
break; | ||
case 'pem.unique': | ||
keys = pems; | ||
break; | ||
case 'keyObject.unique': | ||
keys = keyObjects; | ||
break; | ||
default: | ||
throw new Error('not implemented'); | ||
} | ||
|
||
switch (mode) { | ||
case 'sync': | ||
measureSync(n, privateKey, publicKey, keys); | ||
break; | ||
case 'async-serial': | ||
measureAsyncSerial(n, privateKey, publicKey, keys); | ||
break; | ||
case 'async-parallel': | ||
measureAsyncParallel(n, privateKey, publicKey, keys); | ||
break; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.