mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00

Some checks failed
Coverage Windows / coverage-windows (push) Waiting to run
Coverage Linux / coverage-linux (push) Failing after 1m29s
Coverage Linux (without intl) / coverage-linux-without-intl (push) Failing after 1m29s
Linters / lint-addon-docs (push) Successful in 2m20s
Linters / lint-cpp (push) Failing after 2m13s
Linters / format-cpp (push) Has been skipped
Test and upload documentation to artifacts / build-docs (push) Failing after 4m32s
Linters / lint-py (push) Failing after 2m18s
Linters / lint-yaml (push) Failing after 1m53s
Linters / lint-sh (push) Failing after 1m29s
Linters / lint-codeowners (push) Failing after 56s
Linters / lint-pr-url (push) Has been skipped
Linters / lint-readme (push) Successful in 1m26s
Notify on Push / Notify on Force Push on `main` (push) Has been skipped
Notify on Push / Notify on Push on `main` that lacks metadata (push) Has been skipped
Scorecard supply-chain security / Scorecard analysis (push) Failing after 53s
Linters / lint-js-and-md (push) Successful in 9m53s
PR-URL: https://github.com/nodejs/node/pull/59459 Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
141 lines
3.2 KiB
JavaScript
141 lines
3.2 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common.js');
|
|
const { hasOpenSSL } = require('../../test/common/crypto.js');
|
|
const crypto = require('crypto');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const fixtures_keydir = path.resolve(__dirname, '../../test/fixtures/keys/');
|
|
|
|
function readKey(name) {
|
|
return fs.readFileSync(`${fixtures_keydir}/${name}.pem`, 'utf8');
|
|
}
|
|
|
|
const keyFixtures = {
|
|
'ec': readKey('ec_p256_private'),
|
|
'rsa': readKey('rsa_private_2048'),
|
|
'ed25519': readKey('ed25519_private'),
|
|
};
|
|
|
|
if (hasOpenSSL(3, 5)) {
|
|
keyFixtures['ml-dsa-44'] = readKey('ml_dsa_44_private');
|
|
}
|
|
|
|
const data = crypto.randomBytes(256);
|
|
|
|
let pems;
|
|
let keyObjects;
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
keyType: Object.keys(keyFixtures),
|
|
mode: ['sync', 'async', 'async-parallel'],
|
|
keyFormat: ['pem', 'der', 'jwk', 'keyObject', 'keyObject.unique'],
|
|
n: [1e3],
|
|
}, {
|
|
combinationFilter(p) {
|
|
// "keyObject.unique" allows to compare the result with "keyObject" to
|
|
// assess whether mutexes over the key material impact the operation
|
|
return p.keyFormat !== 'keyObject.unique' ||
|
|
(p.keyFormat === 'keyObject.unique' && p.mode === 'async-parallel');
|
|
},
|
|
});
|
|
|
|
function measureSync(n, digest, privateKey, keys) {
|
|
bench.start();
|
|
for (let i = 0; i < n; ++i) {
|
|
crypto.sign(
|
|
digest,
|
|
data,
|
|
privateKey || keys[i]);
|
|
}
|
|
bench.end(n);
|
|
}
|
|
|
|
function measureAsync(n, digest, privateKey, keys) {
|
|
let remaining = n;
|
|
function done() {
|
|
if (--remaining === 0)
|
|
bench.end(n);
|
|
else
|
|
one();
|
|
}
|
|
|
|
function one() {
|
|
crypto.sign(
|
|
digest,
|
|
data,
|
|
privateKey || keys[n - remaining],
|
|
done);
|
|
}
|
|
bench.start();
|
|
one();
|
|
}
|
|
|
|
function measureAsyncParallel(n, digest, privateKey, keys) {
|
|
let remaining = n;
|
|
function done() {
|
|
if (--remaining === 0)
|
|
bench.end(n);
|
|
}
|
|
bench.start();
|
|
for (let i = 0; i < n; ++i) {
|
|
crypto.sign(
|
|
digest,
|
|
data,
|
|
privateKey || keys[i],
|
|
done);
|
|
}
|
|
}
|
|
|
|
function main({ n, mode, keyFormat, keyType }) {
|
|
pems ||= [...Buffer.alloc(n)].map(() => keyFixtures[keyType]);
|
|
keyObjects ||= pems.map(crypto.createPrivateKey);
|
|
|
|
let privateKey, keys, digest;
|
|
|
|
switch (keyType) {
|
|
case 'rsa':
|
|
case 'ec':
|
|
digest = 'sha256';
|
|
break;
|
|
case 'ed25519':
|
|
case 'ml-dsa-44':
|
|
break;
|
|
default:
|
|
throw new Error('not implemented');
|
|
}
|
|
|
|
switch (keyFormat) {
|
|
case 'keyObject':
|
|
privateKey = keyObjects[0];
|
|
break;
|
|
case 'pem':
|
|
privateKey = pems[0];
|
|
break;
|
|
case 'jwk': {
|
|
privateKey = { key: keyObjects[0].export({ format: 'jwk' }), format: 'jwk' };
|
|
break;
|
|
}
|
|
case 'der': {
|
|
privateKey = { key: keyObjects[0].export({ format: 'der', type: 'pkcs8' }), format: 'der', type: 'pkcs8' };
|
|
break;
|
|
}
|
|
case 'keyObject.unique':
|
|
keys = keyObjects;
|
|
break;
|
|
default:
|
|
throw new Error('not implemented');
|
|
}
|
|
|
|
switch (mode) {
|
|
case 'sync':
|
|
measureSync(n, digest, privateKey, keys);
|
|
break;
|
|
case 'async':
|
|
measureAsync(n, digest, privateKey, keys);
|
|
break;
|
|
case 'async-parallel':
|
|
measureAsyncParallel(n, digest, privateKey, keys);
|
|
break;
|
|
}
|
|
}
|