org.bouncycastle.crypto.prng
Class VMPCRandomGenerator
java.lang.Objectorg.bouncycastle.crypto.prng.VMPCRandomGenerator
- RandomGenerator
public class VMPCRandomGenerator
extends java.lang.Object
void | addSeedMaterial(byte[] seed)- Add more seed material to the generator.
|
void | addSeedMaterial(long seed)- Add more seed material to the generator.
|
void | nextBytes(byte[] bytes)- Fill bytes with random values.
|
void | nextBytes(byte[] bytes, int start, int len)- Fill part of bytes with random values.
|
VMPCRandomGenerator
public VMPCRandomGenerator()
addSeedMaterial
public void addSeedMaterial(byte[] seed)
Add more seed material to the generator.
- addSeedMaterial in interface RandomGenerator
seed - a byte array to be mixed into the generator's state.
addSeedMaterial
public void addSeedMaterial(long seed)
Add more seed material to the generator.
- addSeedMaterial in interface RandomGenerator
seed - a long value to be mixed into the generator's state.
nextBytes
public void nextBytes(byte[] bytes)
Fill bytes with random values.
- nextBytes in interface RandomGenerator
bytes - byte array to be filled.
nextBytes
public void nextBytes(byte[] bytes,
int start,
int len) Fill part of bytes with random values.
- nextBytes in interface RandomGenerator
bytes - byte array to be filled.start - index to start filling at.len - length of segment to fill.