(docs) remove SecureRandom

This commit is contained in:
Tompkins 2019-04-04 08:11:56 -04:00
parent ff05d661dc
commit ddb759d67a
2 changed files with 5 additions and 8 deletions

View File

@ -34,11 +34,9 @@ import java.util.Random;
* <a href="https://commons.apache.org/proper/commons-text/javadocs/api-release/org/apache/commons/text/RandomStringGenerator.html">
* RandomStringGenerator</a> instead.</p>
*
* <p><em>Note.</em> This class relies on an instance {@link Random}, and instances
* of {@link Random} are not cryptographically
* secure. Consider instead using {@link SecureRandom}, for which we have no utility class,
* to get a cryptographically secure pseudo-random number generator for use by
* security-sensitive applications.</p>
* <p><em>Note.</em> This class relies on an instance of {@link Random}, and instances
* of {@link Random} are not cryptographically secure. Consider instead using a more
* cryptographically secure pseudo-random number generator, for which we have no utility class.
*
* <p>#ThreadSafe#</p>
* @since 1.0

View File

@ -23,9 +23,8 @@ import java.util.Random;
* <p>Utility library that supplements the standard {@link Random} class.</p>
*
* <p><em>Note.</em> Instances of {@link Random} are not cryptographically
* secure. Consider instead using {@link SecureRandom}, for which we have no utility class,
* to get a cryptographically secure pseudo-random number generator for use by
* security-sensitive applications.</p>
* secure. Consider instead using a more cryptographically secure pseudo-random
* number generator, for which we have no utility class.</p>
*
* @since 3.3
*/