Bouncy Castle Cryptography 1.46

org.bouncycastle.asn1.crmf
Class CertRequest

java.lang.Object
  extended by org.bouncycastle.asn1.ASN1Encodable
      extended by org.bouncycastle.asn1.crmf.CertRequest
All Implemented Interfaces:
DEREncodable

public class CertRequest
extends ASN1Encodable


Field Summary
 
Fields inherited from class org.bouncycastle.asn1.ASN1Encodable
BER, DER
 
Constructor Summary
CertRequest(DERInteger certReqId, CertTemplate certTemplate, Controls controls)
           
CertRequest(int certReqId, CertTemplate certTemplate, Controls controls)
           
 
Method Summary
 DERInteger getCertReqId()
           
 CertTemplate getCertTemplate()
           
 Controls getControls()
           
static CertRequest getInstance(java.lang.Object o)
           
 DERObject toASN1Object()
           CertRequest ::= SEQUENCE { certReqId INTEGER, -- ID for matching request and reply certTemplate CertTemplate, -- Selected fields of cert to be issued controls Controls OPTIONAL } -- Attributes affecting issuance
 
Methods inherited from class org.bouncycastle.asn1.ASN1Encodable
equals, getDEREncoded, getDERObject, getEncoded, getEncoded, hashCode
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CertRequest

public CertRequest(int certReqId,
                   CertTemplate certTemplate,
                   Controls controls)

CertRequest

public CertRequest(DERInteger certReqId,
                   CertTemplate certTemplate,
                   Controls controls)
Method Detail

getInstance

public static CertRequest getInstance(java.lang.Object o)

getCertReqId

public DERInteger getCertReqId()

getCertTemplate

public CertTemplate getCertTemplate()

getControls

public Controls getControls()

toASN1Object

public DERObject toASN1Object()
 CertRequest ::= SEQUENCE {
                      certReqId     INTEGER,          -- ID for matching request and reply
                      certTemplate  CertTemplate,  -- Selected fields of cert to be issued
                      controls      Controls OPTIONAL }   -- Attributes affecting issuance
 

Specified by:
toASN1Object in class ASN1Encodable
Returns:
a basic ASN.1 object representation.

Bouncy Castle Cryptography 1.46