Name

Class javax.crypto.spec.DHParameterSpec

Synopsis

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.

Class Definition

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(  );
}

See also

AlgorithmParameterSpec, KeyPairGenerator

Get Java Security, 2nd Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.