
prng.seeds.ZeroSeedSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SecurePRNG-core Show documentation
Show all versions of SecurePRNG-core Show documentation
The core random number generators
package prng.seeds;
import prng.generator.SeedSource;
/**
* All requested seeds consist wholly of zeros.
*
* @author Simon Greatrix
*/
public class ZeroSeedSource implements SeedSource {
/**
* A singleton source as all seeds are identical.
*/
public static final SeedSource SOURCE = new ZeroSeedSource();
@Override
public byte[] getSeed(int size) {
return new byte[size];
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy