1 7 8 package java.security.spec; 9 10 import java.math.BigInteger ; 11 12 23 24 public class DSAParameterSpec implements AlgorithmParameterSpec , 25 java.security.interfaces.DSAParams { 26 27 BigInteger p; 28 BigInteger q; 29 BigInteger g; 30 31 40 public DSAParameterSpec(BigInteger p, BigInteger q, BigInteger g) { 41 this.p = p; 42 this.q = q; 43 this.g = g; 44 } 45 46 51 public BigInteger getP() { 52 return this.p; 53 } 54 55 60 public BigInteger getQ() { 61 return this.q; 62 } 63 64 69 public BigInteger getG() { 70 return this.g; 71 } 72 } 73 | Popular Tags |