PR #59872 renamed the config key from `num` to `n` but did not update the destructuring in main(), leaving `{ num: n }` which resolves to undefined. This caused the benchmark to produce near-zero throughput since the send-batching logic never fires when n is undefined. Refs: https://github.com/nodejs/node/pull/59872 PR-URL: https://github.com/nodejs/node/pull/62084 Refs: https://github.com/nodejs/performance/issues/187 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
'use strict';
|
|
// Throughput benchmark in signing and verifying
|
|
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 keylen_list = ['2048'];
|
|
const RSA_PublicPem = {};
|
|
const RSA_PrivatePem = {};
|
|
|
|
keylen_list.forEach((key) => {
|
|
RSA_PublicPem[key] =
|
|
fs.readFileSync(`${fixtures_keydir}/rsa_public_${key}.pem`);
|
|
RSA_PrivatePem[key] =
|
|
fs.readFileSync(`${fixtures_keydir}/rsa_private_${key}.pem`);
|
|
});
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [500],
|
|
algo: ['SHA1', 'SHA224', 'SHA256', 'SHA384', 'SHA512'],
|
|
keylen: keylen_list,
|
|
len: [1024, 102400, 2 * 102400, 3 * 102400, 1024 * 1024],
|
|
});
|
|
|
|
function main({ len, algo, keylen, n }) {
|
|
const message = Buffer.alloc(len, 'b');
|
|
bench.start();
|
|
StreamWrite(algo, keylen, message, n, len);
|
|
}
|
|
|
|
function StreamWrite(algo, keylen, message, n, len) {
|
|
const written = n * len;
|
|
const bits = written * 8;
|
|
const kbits = bits / (1024);
|
|
|
|
const privateKey = RSA_PrivatePem[keylen];
|
|
const s = crypto.createSign(algo);
|
|
const v = crypto.createVerify(algo);
|
|
|
|
while (n-- > 0) {
|
|
s.update(message);
|
|
v.update(message);
|
|
}
|
|
|
|
s.sign(privateKey, 'binary');
|
|
s.end();
|
|
v.end();
|
|
|
|
bench.end(kbits);
|
|
}
|