Uses of Class
org.apache.commons.lang3.RandomStringUtils
Package
Description
Provides highly reusable static utility methods, chiefly concerned with adding value to the
java.lang
classes.-
Uses of RandomStringUtils in org.apache.commons.lang3
Modifier and TypeMethodDescriptionstatic 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.