FileDocCategorySizeDatePackage
RSAKeyGenerationParameters.javaAPI DocAzureus 3.0.3.4739Tue Jun 08 05:13:00 BST 2004org.bouncycastle.crypto.params

RSAKeyGenerationParameters

public class RSAKeyGenerationParameters extends org.bouncycastle.crypto.KeyGenerationParameters

Fields Summary
private BigInteger
publicExponent
private int
certainty
Constructors Summary
public RSAKeyGenerationParameters(BigInteger publicExponent, SecureRandom random, int strength, int certainty)

        super(random, strength);

		this.publicExponent = publicExponent;
        this.certainty = certainty;
    
Methods Summary
public intgetCertainty()

        return certainty;
    
public java.math.BigIntegergetPublicExponent()

		return publicExponent;