Uses of Class
org.apache.commons.lang3.RandomUtils
-
Packages that use RandomUtils Package Description org.apache.commons.lang3 Provides highly reusable static utility methods, chiefly concerned with adding value to thejava.lang
classes. -
-
Uses of RandomUtils in org.apache.commons.lang3
Methods in org.apache.commons.lang3 that return RandomUtils Modifier and Type Method Description static RandomUtils
RandomUtils. insecure()
Gets the singleton instance based onThreadLocalRandom.current()
; which is not cryptographically secure; usesecure()
to use an algorithms/providers specified in thesecurerandom.strongAlgorithms
Security
property.static RandomUtils
RandomUtils. secure()
Gets the singleton instance based onSecureRandom()
which uses an algorithms/providers specified in thesecurerandom.strongAlgorithms
Security
property.static RandomUtils
RandomUtils. secureStrong()
Gets the singleton instance based onSecureRandom.getInstanceStrong()
which uses an algorithms/providers specified in thesecurerandom.strongAlgorithms
Security
property.
-