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.lang
classes. -
-
Uses of RandomStringUtils in org.apache.commons.lang3
Methods in org.apache.commons.lang3 that return RandomStringUtils Modifier and Type Method Description static RandomStringUtils
RandomStringUtils. 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 RandomStringUtils
RandomStringUtils. secure()
Gets the singleton instance based onSecureRandom()
which uses a secure random number generator (RNG) implementing the default random number algorithm.static RandomStringUtils
RandomStringUtils. secureStrong()
Gets the singleton instance based onSecureRandom.getInstanceStrong()
which uses an algorithms/providers specified in thesecurerandom.strongAlgorithms
Security
property.
-