This class is a transparent
representation of a DSA public key.

public class DSAPublicKeySpec implements KeySpec {
// Public Constructors
public DSAPublicKeySpec(java.math.BigInteger y, java.math.BigInteger p,
java.math.BigInteger q, java.math.BigInteger g);
// Public Instance Methods
public java.math.BigInteger getG( );
public java.math.BigInteger getP( );
public java.math.BigInteger getQ( );
public java.math.BigInteger getY( );
}