Java in a Nutshell, 5th Edition [Electronic resources]

نسخه متنی -صفحه : 1191/ 624
نمايش فراداده

DSAPrivateKeySpecjava.security.spec

Java 1.2

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

Figure 14-85. java.security.spec.DSAPrivateKeySpec

public class

DSAPrivateKeySpec implements KeySpec { // Public Constructors public

DSAPrivateKeySpec (java.math.BigInteger

x , 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

getX ( ); }