Package org.bouncycastle.crypto.prng
Class VMPCRandomGenerator
java.lang.Object
org.bouncycastle.crypto.prng.VMPCRandomGenerator
- All Implemented Interfaces:
RandomGenerator
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddSeedMaterial(byte[] seed) Add more seed material to the generator.voidaddSeedMaterial(long seed) Add more seed material to the generator.voidnextBytes(byte[] bytes) Fill bytes with random values.voidnextBytes(byte[] bytes, int start, int len) Fill part of bytes with random values.
-
Constructor Details
-
VMPCRandomGenerator
public VMPCRandomGenerator()
-
-
Method Details
-
addSeedMaterial
public void addSeedMaterial(byte[] seed) Description copied from interface:RandomGeneratorAdd more seed material to the generator.- Specified by:
addSeedMaterialin interfaceRandomGenerator- Parameters:
seed- a byte array to be mixed into the generator's state.
-
addSeedMaterial
public void addSeedMaterial(long seed) Description copied from interface:RandomGeneratorAdd more seed material to the generator.- Specified by:
addSeedMaterialin interfaceRandomGenerator- Parameters:
seed- a long value to be mixed into the generator's state.
-
nextBytes
public void nextBytes(byte[] bytes) Description copied from interface:RandomGeneratorFill bytes with random values.- Specified by:
nextBytesin interfaceRandomGenerator- Parameters:
bytes- byte array to be filled.
-
nextBytes
public void nextBytes(byte[] bytes, int start, int len) Description copied from interface:RandomGeneratorFill part of bytes with random values.- Specified by:
nextBytesin interfaceRandomGenerator- Parameters:
bytes- byte array to be filled.start- index to start filling at.len- length of segment to fill.
-