Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
195617a1
Commit
195617a1
authored
Oct 26, 2012
by
Mukund Sivaraman
Browse files
[2357] Wrap comments above 80 char
parent
0eb033a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/util/range_utilities.h
View file @
195617a1
...
...
@@ -41,16 +41,17 @@ isRangeZero(Iterator begin, Iterator end) {
/// @brief Fill in specified range with a random data.
///
/// Make sure that random number generator is initialized properly. Otherwise you
/// will get a the same pseudo-random sequence after every start of your process.
/// Calling srand() is enough. This method uses default rand(), which is usually
/// a LCG pseudo-random number generator, so it is not suitable for security
/// purposes. Please get a decent PRNG implementation, like mersene twister, if
/// you are doing anything related with security.
/// Make sure that random number generator is initialized
/// properly. Otherwise you will get a the same pseudo-random sequence
/// after every start of your process. Calling srand() is enough. This
/// method uses default rand(), which is usually a LCG pseudo-random
/// number generator, so it is not suitable for security
/// purposes. Please get a decent PRNG implementation, like mersene
/// twister, if you are doing anything related with security.
///
/// PRNG initialization is left out of this function on purpose. It may
be
/// initialized to specific value on purpose, e.g. to repeat exactly
the same
/// sequence in a test.
/// PRNG initialization is left out of this function on purpose. It may
///
be
initialized to specific value on purpose, e.g. to repeat exactly
///
the same
sequence in a test.
///
/// @param begin
/// @param end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment