1 7 8 15 16 package javax.crypto.spec; 17 18 import java.math.BigInteger; 19 20 35 public class DHPrivateKeySpec implements java.security.spec.KeySpec 36 { 37 38 45 public DHPrivateKeySpec(BigInteger x, BigInteger p, BigInteger g) { } 46 47 52 public BigInteger getX() { } 53 54 59 public BigInteger getP() { } 60 61 66 public BigInteger getG() { } 67 } 68 | Popular Tags |