This
class is a transparent representation of the set of parameters
required by the Diffie-Hellman key-agreement algorithm. All parties
to the key agreement must share these parameters and use them to
generate a Diffie-Hellman public/private key pair.

public class DHParameterSpec implements java.security.spec.AlgorithmParameterSpec {
// Public Constructors
public DHParameterSpec(java.math.BigInteger p, java.math.BigInteger g);
public DHParameterSpec(java.math.BigInteger p, java.math.BigInteger g, int l);
// Public Instance Methods
public java.math.BigInteger getG( );
public int getL( );
public java.math.BigInteger getP( );
}