1 19 20 package com.maverick.crypto.publickey; 21 22 import java.math.BigInteger ; 23 24 public class DsaKey { 25 26 protected BigInteger p; 27 protected BigInteger q; 28 protected BigInteger g; 29 30 public DsaKey() { 31 32 } 33 34 public DsaKey(BigInteger p, BigInteger q, BigInteger g) { 35 this.p = p; 36 this.q = q; 37 this.g = g; 38 } 39 40 public BigInteger getP() { 41 return p; 42 } 43 44 public BigInteger getQ() { 45 return q; 46 } 47 48 public BigInteger getG() { 49 return g; 50 } 51 52 } 53 | Popular Tags |