From 4350bf5a0b0877c9133888b47e0eec9bf09c6e42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Serkan=20=C3=96zel?= Date: Sun, 4 Apr 2021 14:06:01 +0300 Subject: [PATCH] doc: mention cryptographic prng in description of randomUUID PR-URL: https://github.com/nodejs/node/pull/38074 Refs: https://github.com/nodejs/node/pull/36729 Reviewed-By: Rich Trott --- doc/api/crypto.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/api/crypto.md b/doc/api/crypto.md index 66f8684eb1f5db..e82ae7ad70b269 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -2853,7 +2853,8 @@ added: REPLACEME `disableEntropyCache` to `true`. **Defaults**: `false`. * Returns: {string} -Generates a random [RFC 4122][] Version 4 UUID. +Generates a random [RFC 4122][] Version 4 UUID. The UUID is generated using a +cryptographic pseudorandom number generator. ### `crypto.scrypt(password, salt, keylen[, options], callback)`