1 7 8 15 16 package javax.crypto.spec; 17 18 import java.math.BigInteger; 19 import java.security.spec.AlgorithmParameterSpec; 20 21 47 public class DHParameterSpec implements AlgorithmParameterSpec 48 { 49 50 57 public DHParameterSpec(BigInteger p, BigInteger g) { } 58 59 69 public DHParameterSpec(BigInteger p, BigInteger g, int l) { } 70 71 76 public BigInteger getP() { } 77 78 83 public BigInteger getG() { } 84 85 92 public int getL() { } 93 } 94 | Popular Tags |