Bouncy Castle Cryptography 1.23

org.bouncycastle.asn1.x509
Class DSAParameter

java.lang.Object
  |
  +--org.bouncycastle.asn1.x509.DSAParameter
All Implemented Interfaces:
DEREncodable

public class DSAParameter
extends java.lang.Object
implements DEREncodable


Constructor Summary
DSAParameter(ASN1Sequence seq)
           
DSAParameter(java.math.BigInteger p, java.math.BigInteger q, java.math.BigInteger g)
           
 
Method Summary
 DERObject getDERObject()
           
 java.math.BigInteger getG()
           
static DSAParameter getInstance(ASN1TaggedObject obj, boolean explicit)
           
static DSAParameter getInstance(java.lang.Object obj)
           
 java.math.BigInteger getP()
           
 java.math.BigInteger getQ()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DSAParameter

public DSAParameter(java.math.BigInteger p,
                    java.math.BigInteger q,
                    java.math.BigInteger g)

DSAParameter

public DSAParameter(ASN1Sequence seq)
Method Detail

getInstance

public static DSAParameter getInstance(ASN1TaggedObject obj,
                                       boolean explicit)

getInstance

public static DSAParameter getInstance(java.lang.Object obj)

getP

public java.math.BigInteger getP()

getQ

public java.math.BigInteger getQ()

getG

public java.math.BigInteger getG()

getDERObject

public DERObject getDERObject()
Specified by:
getDERObject in interface DEREncodable

Bouncy Castle Cryptography 1.23