mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
597 B
25 lines
597 B
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
if (common.hasFipsCrypto)
|
|
common.skip('some benchmarks are FIPS-incompatible');
|
|
|
|
const runBenchmark = require('../common/benchmark');
|
|
|
|
runBenchmark('crypto',
|
|
[
|
|
'n=1',
|
|
'algo=sha256',
|
|
'api=stream',
|
|
'keylen=1024',
|
|
'len=1',
|
|
'out=buffer',
|
|
'type=buf',
|
|
'v=crypto',
|
|
'writes=1'
|
|
],
|
|
{ NODEJS_BENCHMARK_ZERO_ALLOWED: 1 });
|
|
|