This PRNG forms a base component of the Fortuna PRNG as proposed by Bruce Schneier & Niels Ferguson (PRNG with input).
The Generator can be used stand alone as deterministic PRNG (DRNG). It won't gather entropy on its own and
provided with the same seed it will always generate the same sequence of bytes for the same underlying
block cipher and hash algorithm.
Note: Generator MUST be seeded before generating pseudo random data either with addSeed() or by passing the seed to the constructor.
This PRNG forms a base component of the Fortuna PRNG as proposed by Bruce Schneier & Niels Ferguson (PRNG with input). The Generator can be used stand alone as deterministic PRNG (DRNG). It won't gather entropy on its own and provided with the same seed it will always generate the same sequence of bytes for the same underlying block cipher and hash algorithm.
Note: Generator MUST be seeded before generating pseudo random data either with addSeed() or by passing the seed to the constructor.