org.bouncycastle.jcajce.provider.drbg.EntropyGatherer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-debug-jdk18on Show documentation
Show all versions of bcprov-ext-debug-jdk18on Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for Java 1.8 and later with debug enabled.
The newest version!
package org.bouncycastle.jcajce.provider.drbg;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicReference;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.bouncycastle.util.Properties;
class EntropyGatherer
implements Runnable
{
private static final Logger LOG = Logger.getLogger(EntropyGatherer.class.getName());
private final long pause;
private final AtomicBoolean seedAvailable;
private final AtomicReference entropy;
private final IncrementalEntropySource baseRandom;
EntropyGatherer(IncrementalEntropySource baseRandom, AtomicBoolean seedAvailable, AtomicReference entropy)
{
this.baseRandom = baseRandom;
this.seedAvailable = seedAvailable;
this.entropy = entropy;
this.pause = getPause();
}
public void run()
{
try
{
entropy.set(baseRandom.getEntropy(pause));
seedAvailable.set(true);
}
catch (InterruptedException e)
{
if (LOG.isLoggable(Level.FINE))
{
LOG.fine("entropy request interrupted - exiting");
}
Thread.currentThread().interrupt();
}
}
private static long getPause()
{
String pauseSetting = Properties.getPropertyValue("org.bouncycastle.drbg.gather_pause_secs");
if (pauseSetting != null)
{
try
{
return Long.parseLong(pauseSetting) * 1000;
}
catch (Exception e)
{
return 5000;
}
}
return 5000;
}
}