From: Jérôme Benoit Date: Wed, 29 Nov 2023 20:12:09 +0000 (+0100) Subject: refactor: cleanup import X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=b77517bab6445c121ec357749683416b4c656438;p=benchmarks-js.git refactor: cleanup import Signed-off-by: Jérôme Benoit --- 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 } /**