Uses of Class
org.apache.commons.lang3.RandomStringUtils
Packages that use 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
Fields in org.apache.commons.lang3 declared as RandomStringUtilsModifier and TypeFieldDescriptionprivate static RandomStringUtils
RandomStringUtils.INSECURE
private static RandomStringUtils
RandomStringUtils.SECURE
Methods in org.apache.commons.lang3 that return RandomStringUtilsModifier 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.getInstanceStrong()
which uses an algorithms/providers specified in thesecurerandom.strongAlgorithms
Security
property.