Skip to content

Commit

Permalink
doc: add link to safe integer definition
Browse files Browse the repository at this point in the history
Refs: nodejs#34600
Co-authored-by: Rich Trott <rtrott@gmail.com>

PR-URL: nodejs#35049
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
  • Loading branch information
tniessen authored and joesepi committed Oct 22, 2020
1 parent 0b113e7 commit d4d5e4c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions doc/api/crypto.md
Original file line number Diff line number Diff line change
Expand Up @@ -2814,7 +2814,7 @@ Return a random integer `n` such that `min <= n < max`. This
implementation avoids [modulo bias][].

The range (`max - min`) must be less than 2<sup>48</sup>. `min` and `max` must
be safe integers.
be [safe integers][].

If the `callback` function is not provided, the random integer is
generated synchronously.
Expand Down Expand Up @@ -3622,7 +3622,8 @@ See the [list of SSL OP Flags][] for details.
[RFC 5208]: https://www.rfc-editor.org/rfc/rfc5208.txt
[encoding]: buffer.html#buffer_buffers_and_character_encodings
[initialization vector]: https://en.wikipedia.org/wiki/Initialization_vector
[list of SSL OP Flags]: wiki.openssl.org/index.php/List_of_SSL_OP_Flags#Table_of_Options
[safe integers]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isSafeInteger
[scrypt]: https://en.wikipedia.org/wiki/Scrypt
[stream-writable-write]: stream.html#stream_writable_write_chunk_encoding_callback
[stream]: stream.html
[list of SSL OP Flags]: wiki.openssl.org/index.php/List_of_SSL_OP_Flags#Table_of_Options
[stream-writable-write]: stream.html#stream_writable_write_chunk_encoding_callback

0 comments on commit d4d5e4c

Please sign in to comment.