return crypto.randomBytes(4).readUInt32LE() / 0x100000000
}
+/**
+ * Generate a cryptographically secure random number in the [0,1[ range
+ *
+ * @param
+ */
+function secureRandomWithRandomValues () {
+ return crypto.getRandomValues(new Uint32Array(1))[0] / 0x100000000
+}
+
/**
* @param max
* @param min
generateRandomNumberArray,
generateRandomObject,
sleep,
- secureRandom
+ secureRandom,
+ secureRandomWithRandomValues
}
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 = 281474976710655
/**
* @param max
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
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', () => {
+ crypto.randomInt(maximum)
+ }),
+ Benchmark.add('Math random integer generator', () => {
getRandomInteger(maximum)
}),
Benchmark.cycle(),