blob: 63d6548ef0e8df402ea7c8bfd620dc7d83cee95a [file] [log] [blame]
package org.bouncycastle.jcajce.provider.symmetric.util;
import java.security.AlgorithmParameterGeneratorSpi;
import java.security.SecureRandom;
public abstract class BaseAlgorithmParameterGenerator
extends AlgorithmParameterGeneratorSpi
{
protected SecureRandom random;
protected int strength = 1024;
protected void engineInit(
int strength,
SecureRandom random)
{
this.strength = strength;
this.random = random;
}
}