diff --git a/src/dorkbox/util/entropy/SimpleEntropy.java b/src/dorkbox/util/entropy/SimpleEntropy.java index cda070f..573f919 100644 --- a/src/dorkbox/util/entropy/SimpleEntropy.java +++ b/src/dorkbox/util/entropy/SimpleEntropy.java @@ -28,7 +28,6 @@ class SimpleEntropy implements EntropyProvider { @Override public byte[] get(String ignored) throws Exception { - System.err.println("Using simple entropy (SecureRandom) without input mixing."); SecureRandom secureRandom = new SecureRandom(); byte[] rand = new byte[256]; secureRandom.nextBytes(rand);