public interface JSSSecureRandom
| Modifier and Type | Method and Description |
|---|---|
void |
nextBytes(byte[] bytes)
Retrieves random bytes and stores them in the given array.
|
void |
setSeed(byte[] seed)
Seed the RNG with the given seed bytes.
|
void |
setSeed(long seed)
Seed the RNG with the eight bytes contained in
seed. |
void setSeed(byte[] seed)
seed - Seed.void setSeed(long seed)
seed.seed - Seed.void nextBytes(byte[] bytes)
bytes - Array to store random bytes.