Package org.bouncycastle.asn1.x9
Class DHDomainParameters
- java.lang.Object
-
- org.bouncycastle.asn1.ASN1Object
-
- org.bouncycastle.asn1.x9.DHDomainParameters
-
- All Implemented Interfaces:
ASN1Encodable,Encodable
public class DHDomainParameters extends ASN1Object
-
-
Constructor Summary
Constructors Constructor Description DHDomainParameters(BigInteger p, BigInteger g, BigInteger q, BigInteger j, DHValidationParms validationParms)DHDomainParameters(ASN1Integer p, ASN1Integer g, ASN1Integer q, ASN1Integer j, DHValidationParms validationParms)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ASN1IntegergetG()static DHDomainParametersgetInstance(Object obj)static DHDomainParametersgetInstance(ASN1TaggedObject obj, boolean explicit)ASN1IntegergetJ()ASN1IntegergetP()ASN1IntegergetQ()DHValidationParmsgetValidationParms()ASN1PrimitivetoASN1Primitive()Method providing a primitive representation of this object suitable for encoding.-
Methods inherited from class org.bouncycastle.asn1.ASN1Object
equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode, toASN1Object
-
-
-
-
Constructor Detail
-
DHDomainParameters
public DHDomainParameters(BigInteger p, BigInteger g, BigInteger q, BigInteger j, DHValidationParms validationParms)
-
DHDomainParameters
public DHDomainParameters(ASN1Integer p, ASN1Integer g, ASN1Integer q, ASN1Integer j, DHValidationParms validationParms)
-
-
Method Detail
-
getInstance
public static DHDomainParameters getInstance(ASN1TaggedObject obj, boolean explicit)
-
getInstance
public static DHDomainParameters getInstance(Object obj)
-
getP
public ASN1Integer getP()
-
getG
public ASN1Integer getG()
-
getQ
public ASN1Integer getQ()
-
getJ
public ASN1Integer getJ()
-
getValidationParms
public DHValidationParms getValidationParms()
-
toASN1Primitive
public ASN1Primitive toASN1Primitive()
Description copied from class:ASN1ObjectMethod providing a primitive representation of this object suitable for encoding.- Specified by:
toASN1Primitivein interfaceASN1Encodable- Specified by:
toASN1Primitivein classASN1Object- Returns:
- a primitive representation of this object.
-
-