From a9966f4e58b825ba36cd589fde7f6632a16bae51 Mon Sep 17 00:00:00 2001 From: nathan Date: Tue, 6 Feb 2018 09:06:53 +0100 Subject: [PATCH] removed system.err output for simple entropy --- src/dorkbox/util/entropy/SimpleEntropy.java | 1 - 1 file changed, 1 deletion(-) 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);