X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=benchmark-utils.mjs;h=7c7832e897d76061383214a3763142fa68159c6a;hb=b77517bab6445c121ec357749683416b4c656438;hp=59521b614ebee8564dd93e258bac032bba210ddb;hpb=e90d5ac46b670c6dc4a50a7febebcb4f23712551;p=benchmarks-js.git diff --git a/benchmark-utils.mjs b/benchmark-utils.mjs index 59521b6..7c7832e 100644 --- a/benchmark-utils.mjs +++ b/benchmark-utils.mjs @@ -1,11 +1,11 @@ -import crypto, { webcrypto } from 'node:crypto' +import { randomBytes, getRandomValues } from 'node:crypto' /** * Generate a cryptographically secure random number in the [0,1[ range * @returns */ export function secureRandom () { - return crypto.randomBytes(4).readUInt32LE() / 0x100000000 + return randomBytes(4).readUInt32LE() / 0x100000000 } /** @@ -13,7 +13,7 @@ export function secureRandom () { * @returns */ export function secureRandomWithRandomValues () { - return webcrypto.getRandomValues(new Uint32Array(1))[0] / 0x100000000 + return getRandomValues(new Uint32Array(1))[0] / 0x100000000 } /**