Skip to content
Closed
9 changes: 2 additions & 7 deletions doc/api/crypto.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -651,13 +651,8 @@ Generates cryptographically strong pseudo-random data. Usage:
});

// sync
try {
var buf = crypto.randomBytes(256);
console.log('Have %d bytes of random data: %s', buf.length, buf);
} catch (ex) {
// handle error
// most likely, entropy sources are drained
}
var buf = crypto.randomBytes(256);
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

May I suggest to use const?

console.log('Have %d bytes of random data: %s', buf.length, buf);

NOTE: This will block if there is insufficient entropy, although it should
normally never take longer than a few milliseconds. The only time when this
Expand Down