Uses of Class
org.apache.commons.lang3.RandomStringUtils
-
Packages that use RandomStringUtils Package Description org.apache.commons.lang3 Provides highly reusable utility methods, chiefly concerned with adding value to thejava.langclasses. -
-
Uses of RandomStringUtils in org.apache.commons.lang3
Methods in org.apache.commons.lang3 that return RandomStringUtils Modifier and Type Method Description static RandomStringUtilsRandomStringUtils. insecure()Gets the singleton instance based onThreadLocalRandom.current(); which is not cryptographically secure; usesecure()to use an algorithms/providers specified in thesecurerandom.strongAlgorithmsSecurityproperty.static RandomStringUtilsRandomStringUtils. secure()Gets the singleton instance based onSecureRandom()which uses a secure random number generator (RNG) implementing the default random number algorithm.static RandomStringUtilsRandomStringUtils. secureStrong()Gets the singleton instance based onSecureRandom.getInstanceStrong()which uses an algorithms/providers specified in thesecurerandom.strongAlgorithmsSecurityproperty.
-