This class represents parameters that
generate public/private key pairs for RSA cryptography.

public class RSAKeyGenParameterSpec implements AlgorithmParameterSpec {
// Public Constructors
public RSAKeyGenParameterSpec(int keysize,
java.math.BigInteger publicExponent);
// Public Constants
public static final java.math.BigInteger F0;
public static final java.math.BigInteger F4;
// Public Instance Methods
public int getKeysize( );
public java.math.BigInteger getPublicExponent( );
}