public class JceRandom extends AbstractRandom
Random implementation using the built-in SecureRandom PRNG.| Constructor and Description |
|---|
JceRandom() |
| Modifier and Type | Method and Description |
|---|---|
void |
fill(byte[] foo,
int start,
int len)
Fill part of bytes with random values.
|
int |
random(int n)
Returns a pseudo-random uniformly distributed
int
in the half-open range [0, n). |
fillpublic void fill(byte[] foo,
int start,
int len)
Randomfoo - byte array to be filled.start - index to start filling at.len - length of segment to fill.public int random(int n)
Randomint
in the half-open range [0, n).n - The range upper limitCopyright © 2008–2015 The Apache Software Foundation. All rights reserved.