// 
// Decompiled by Procyon v0.6.0
// 

package org.bouncycastle.crypto.prng;

public interface EntropySource
{
    boolean isPredictionResistant();
    
    byte[] getEntropy();
    
    int entropySize();
}
