We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6a0dcb commit 064398bCopy full SHA for 064398b
prov/src/main/java/org/bouncycastle/jcajce/provider/drbg/DRBG.java
@@ -456,7 +456,7 @@ public byte[] getEntropy()
456
if (!scheduled.getAndSet(true))
457
{
458
// don't try to be clever here - things change in Java 11!
459
- Thread gatherer = new Thread(new EntropyGatherer(byteLength));
+ Thread gatherer = new Thread(new EntropyGatherer(byteLength), "BC-ENTROPY-GATHERER");
460
gatherer.setDaemon(true);
461
gatherer.start();
462
}
0 commit comments