Google

Bouncy Castle Cryptography 1.11 API Specification: Class DSAParameter
Bouncy Castle Cryptography 1.11

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(java.math.BigInteger p, java.math.BigInteger q, java.math.BigInteger g)
           
DSAParameter(DERConstructedSequence seq)
           
 
Method Summary
 DERObject getDERObject()
           
 java.math.BigInteger getG()
           
 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(DERConstructedSequence seq)
Method Detail

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.11