The SecureRandom class provides a cryptographically strong random number generator (RNG).
See the Internet Engineering Task Force (IETF) RFC 1750: Randomness Recommendations for
Security for more information.]()
Typical callers of SecureRandom invoke the following methods to retrieve random bytes:
1Bytes bytes...2 SecureRandom random = new SecureRandom();3 Bytes nextBytes = random.nextBytes(bytes);
or more convenient to get a Bytes with the demanded length
1int length = 32;2 SecureRandom random = new SecureRandom();3 Bytes nextBytes = random.nextBytes(length);
dw.crypto.SecureRandom is intentionally an adapter for generating cryptographic hard random numbers.
Returns a pseudorandom, uniformly distributed int value between 0 (inclusive) and the specified value (exclusive), drawn from this random number generator’s sequence.
Returns the next pseudorandom, uniformly distributed Number value between 0.0 (inclusive) and 1.0 (exclusive) from this random number generator’s sequence.
Returns the given number of seed bytes, computed using the seed
generation algorithm that this class uses to seed itself. This
call may be used to seed other random number generators.
Generates a user-specified number of random bytes.
If a call to setSeed had not occurred previously,
the first call to this method forces this SecureRandom object
to seed itself. This self-seeding will not occur if
setSeed was previously called.
Returns the next pseudorandom, uniformly distributed int value from this random number generator's sequence. The general
contract of nextInt is that one int value is pseudorandomly generated and returned. All 2^32
possible int values are produced with (approximately) equal probability.
Returns:
the next pseudorandom, uniformly distributed int value from this random number generator's sequence
Returns a pseudorandom, uniformly distributed int value
between 0 (inclusive) and the specified value (exclusive), drawn from
this random number generator's sequence.
Parameters:
upperBound - the bound on the random number to be returned. Must be positive.
Returns:
the next pseudorandom, uniformly distributed int value between 0 (inclusive) and upperBound (exclusive)
from this random number generator's sequence
Returns the next pseudorandom, uniformly distributed
Number value between 0.0 (inclusive) and 1.0 (exclusive) from this random number generator's sequence.
Returns:
the next pseudorandom, uniformly distributed Number
value between 0.0 and 1.0 from this random number generator's sequence
Reseeds this random object. The given seed supplements, rather than replaces, the existing seed. Thus, repeated calls are guaranteed never to reduce randomness.