1'use strict'; 2 3const common = require('../common'); 4 5if (!common.hasCrypto) 6 common.skip('missing crypto'); 7 8if (common.hasFipsCrypto) 9 common.skip('some benchmarks are FIPS-incompatible'); 10 11const runBenchmark = require('../common/benchmark'); 12 13runBenchmark('crypto', { NODEJS_BENCHMARK_ZERO_ALLOWED: 1 }); 14