Uses of Class
org.apache.commons.lang3.RandomUtils
Packages that use RandomUtils
Package
Description
Provides highly reusable utility methods, chiefly concerned with adding value to the
java.lang classes.-
Uses of RandomUtils in org.apache.commons.lang3
Methods in org.apache.commons.lang3 that return RandomUtilsModifier and TypeMethodDescriptionstatic RandomUtilsRandomUtils.insecure()Gets the singleton instance based onThreadLocalRandom.current(); which is not cryptographically secure; for more secure processing usesecure()orsecureStrong().static RandomUtilsRandomUtils.secure()Gets the singleton instance based onSecureRandom()which uses the default algorithm and provider ofSecureRandom.static RandomUtilsRandomUtils.secureStrong()Gets the singleton instance based onSecureRandom.getInstanceStrong()which uses an algorithms/providers specified in thesecurerandom.strongAlgorithmsSecurityproperty.