Bouncy Castle Cryptography 1.46

org.bouncycastle.asn1.cmp
Class RevDetails

java.lang.Object
  extended by org.bouncycastle.asn1.ASN1Encodable
      extended by org.bouncycastle.asn1.cmp.RevDetails
All Implemented Interfaces:
DEREncodable

public class RevDetails
extends ASN1Encodable


Field Summary
 
Fields inherited from class org.bouncycastle.asn1.ASN1Encodable
BER, DER
 
Constructor Summary
RevDetails(CertTemplate certDetails)
           
RevDetails(CertTemplate certDetails, X509Extensions crlEntryDetails)
           
 
Method Summary
 CertTemplate getCertDetails()
           
 X509Extensions getCrlEntryDetails()
           
static RevDetails getInstance(java.lang.Object o)
           
 DERObject toASN1Object()
           RevDetails ::= SEQUENCE { certDetails CertTemplate, -- allows requester to specify as much as they can about -- the cert.
 
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

RevDetails

public RevDetails(CertTemplate certDetails)

RevDetails

public RevDetails(CertTemplate certDetails,
                  X509Extensions crlEntryDetails)
Method Detail

getInstance

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

getCertDetails

public CertTemplate getCertDetails()

getCrlEntryDetails

public X509Extensions getCrlEntryDetails()

toASN1Object

public DERObject toASN1Object()
 RevDetails ::= SEQUENCE {
                  certDetails         CertTemplate,
                   -- allows requester to specify as much as they can about
                   -- the cert. for which revocation is requested
                   -- (e.g., for cases in which serialNumber is not available)
                   crlEntryDetails     Extensions       OPTIONAL
                   -- requested crlEntryExtensions
             }
 

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

Bouncy Castle Cryptography 1.46