May 1998
Intermediate to advanced
469 pages
14h 57m
English
Class javax.crypto.spec.DHParameterSpec
This class encapsulates the public parameters used in the Diffie-Hellman key agreement protocol. Instances of this class can be passed to the algorithm-specific initialization methods of a key pair generator.
public class javax.crypto.spec.DHParameterSpec
extends java.lang.Object
implements java.security.spec.AlgorithmParameterSpec {
// Constructors
public DHParameterSpec(BigInteger, BigInteger);
public DHParameterSpec(BigInteger, BigInteger, int);
// Instance Methods
public BigInteger getG();
public int getL();
public BigInteger getP();
}
AlgorithmParameterSpec, KeyPairGenerator