X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=random.js;h=272d8e6969c23f71c234cad66ca93d8ffbe889dd;hb=9db6379f83a78902f85f14d7cc672e8bdb7b4968;hp=f4fd9f0bd53f9182f13541be0b3bb17bc7c5e27c;hpb=7e8612886ac3d42901e452b0bd36781410f37b58;p=benchmarks-js.git diff --git a/random.js b/random.js index f4fd9f0..272d8e6 100644 --- a/random.js +++ b/random.js @@ -1,7 +1,11 @@ const Benchmark = require('benny') -const { secureRandom } = require('./benchmark-utils') +const { + secureRandom, + secureRandomWithRandomValues +} = require('./benchmark-utils') +const crypto = require('crypto') -const maximum = Number.MAX_SAFE_INTEGER +const maximum = 281474976710654 /** * @param max @@ -20,6 +24,26 @@ function getSecureRandomInteger (max = Number.MAX_SAFE_INTEGER, min = 0) { return Math.floor(secureRandom() * (max + 1)) } +/** + * @param max + * @param min + * @returns + */ +function getSecureRandomIntegerWithRandomValues ( + max = Number.MAX_SAFE_INTEGER, + min = 0 +) { + if (max < min || max < 0 || min < 0) { + throw new RangeError('Invalid interval') + } + max = Math.floor(max) + if (min != null && min !== 0) { + min = Math.ceil(min) + return Math.floor(secureRandomWithRandomValues() * (max - min + 1)) + min + } + return Math.floor(secureRandomWithRandomValues() * (max + 1)) +} + /** * @param max * @param min @@ -42,7 +66,21 @@ Benchmark.suite( Benchmark.add('Secure random integer generator', () => { getSecureRandomInteger(maximum) }), - Benchmark.add('Random integer generator', () => { + Benchmark.add( + 'Secure random with getRandomValues() integer generator', + () => { + getSecureRandomIntegerWithRandomValues(maximum) + } + ), + Benchmark.add('Crypto random integer generator', (max = maximum, min = 0) => { + max = Math.floor(max) + if (min !== undefined && min !== 0) { + min = Math.ceil(min) + return Math.floor(crypto.randomInt(min, max + 1)) + } + return Math.floor(crypto.randomInt(max + 1)) + }), + Benchmark.add('Math random integer generator', () => { getRandomInteger(maximum) }), Benchmark.cycle(),