Bouncy Castle Cryptography Library 1.49

org.bouncycastle.asn1.isismtt.ocsp
Class RequestedCertificate

java.lang.Object
  extended by org.bouncycastle.asn1.ASN1Object
      extended by org.bouncycastle.asn1.isismtt.ocsp.RequestedCertificate
All Implemented Interfaces:
ASN1Choice, ASN1Encodable

public class RequestedCertificate
extends ASN1Object
implements ASN1Choice

ISIS-MTT-Optional: The certificate requested by the client by inserting the RetrieveIfAllowed extension in the request, will be returned in this extension.

ISIS-MTT-SigG: The signature act allows publishing certificates only then, when the certificate owner gives his explicit permission. Accordingly, there may be �nondownloadable� certificates, about which the responder must provide status information, but MUST NOT include them in the response. Clients may get therefore the following three kind of answers on a single request including the RetrieveIfAllowed extension:

Clients requesting RetrieveIfAllowed MUST be able to handle these cases. If any of the OCTET STRING options is used, it MUST contain the DER encoding of the requested certificate.

            RequestedCertificate ::= CHOICE {
              Certificate Certificate,
              publicKeyCertificate [0] EXPLICIT OCTET STRING,
              attributeCertificate [1] EXPLICIT OCTET STRING
            }
 


Field Summary
static int attributeCertificate
           
static int certificate
           
static int publicKeyCertificate
           
 
Constructor Summary
RequestedCertificate(Certificate certificate)
          Constructor from a given details.
RequestedCertificate(int type, byte[] certificateOctets)
           
 
Method Summary
 byte[] getCertificateBytes()
           
static RequestedCertificate getInstance(ASN1TaggedObject obj, boolean explicit)
           
static RequestedCertificate getInstance(java.lang.Object obj)
           
 int getType()
           
 ASN1Primitive toASN1Primitive()
          Produce an object suitable for an ASN1OutputStream.
 
Methods inherited from class org.bouncycastle.asn1.ASN1Object
equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode, toASN1Object
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

certificate

public static final int certificate
See Also:
Constant Field Values

publicKeyCertificate

public static final int publicKeyCertificate
See Also:
Constant Field Values

attributeCertificate

public static final int attributeCertificate
See Also:
Constant Field Values
Constructor Detail

RequestedCertificate

public RequestedCertificate(Certificate certificate)
Constructor from a given details.

Only one parameter can be given. All other must be null.

Parameters:
certificate - Given as Certificate

RequestedCertificate

public RequestedCertificate(int type,
                            byte[] certificateOctets)
Method Detail

getInstance

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

getInstance

public static RequestedCertificate getInstance(ASN1TaggedObject obj,
                                               boolean explicit)

getType

public int getType()

getCertificateBytes

public byte[] getCertificateBytes()

toASN1Primitive

public ASN1Primitive toASN1Primitive()
Produce an object suitable for an ASN1OutputStream.

Returns:

            RequestedCertificate ::= CHOICE {
              Certificate Certificate,
              publicKeyCertificate [0] EXPLICIT OCTET STRING,
              attributeCertificate [1] EXPLICIT OCTET STRING
            }
 

Specified by:
toASN1Primitive in interface ASN1Encodable
Specified by:
toASN1Primitive in class ASN1Object
Returns:
a DERObject

Bouncy Castle Cryptography Library 1.49