Home
last modified time | relevance | path

Searched refs:disableEntropyCache (Results 1 – 4 of 4) sorted by relevance

/third_party/node/benchmark/crypto/
DrandomUUID.js8 disableEntropyCache: [0, 1], property
11 function main({ n, disableEntropyCache }) { field
12 disableEntropyCache = !!disableEntropyCache;
15 randomUUID({ disableEntropyCache }); field
/third_party/node/test/parallel/
Dtest-crypto-randomuuid.js46 testMatch(randomUUID({ disableEntropyCache: true })); property
47 testMatch(randomUUID({ disableEntropyCache: true })); property
48 testMatch(randomUUID({ disableEntropyCache: true })); property
49 testMatch(randomUUID({ disableEntropyCache: true })); property
55 assert.throws(() => randomUUID({ disableEntropyCache: '' }), { property
/third_party/node/lib/internal/crypto/
Drandom.js409 disableEntropyCache = false,
412 validateBoolean(disableEntropyCache, 'options.disableEntropyCache');
414 return disableEntropyCache ? getUnbufferedUUID() : getBufferedUUID();
/third_party/node/doc/api/
Dcrypto.md5118 * `disableEntropyCache` {boolean} By default, to improve performance,
5121 without using the cache, set `disableEntropyCache` to `true`.