DSAPublicKeySpec | java.security.spec |
This class is a transparent representation of a DSA public key.
Figure 14-86. java.security.spec.DSAPublicKeySpec
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 ( ); }
|