Team LiB
Previous Section Next Section

RSAKeyGenParameterSpecjava.security.spec

Java 1.3

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

Figure 14-99. java.security.spec.RSAKeyGenParameterSpec


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( );  
}

    Team LiB
    Previous Section Next Section