removed system.err output for simple entropy

This commit is contained in:
nathan 2018-02-06 09:06:53 +01:00
parent 9cbd5f218d
commit a9966f4e58
1 changed files with 0 additions and 1 deletions

View File

@ -28,7 +28,6 @@ class SimpleEntropy implements EntropyProvider {
@Override @Override
public public
byte[] get(String ignored) throws Exception { byte[] get(String ignored) throws Exception {
System.err.println("Using simple entropy (SecureRandom) without input mixing.");
SecureRandom secureRandom = new SecureRandom(); SecureRandom secureRandom = new SecureRandom();
byte[] rand = new byte[256]; byte[] rand = new byte[256];
secureRandom.nextBytes(rand); secureRandom.nextBytes(rand);