Class TBSRequest

java.lang.Object
org.bouncycastle.asn1.ASN1Object
org.bouncycastle.asn1.ocsp.TBSRequest
All Implemented Interfaces:
ASN1Encodable, Encodable

public class TBSRequest extends ASN1Object
  • Constructor Details

  • Method Details

    • getInstance

      public static TBSRequest getInstance(ASN1TaggedObject obj, boolean explicit)
    • getInstance

      public static TBSRequest getInstance(Object obj)
    • getVersion

      public ASN1Integer getVersion()
    • getRequestorName

      public GeneralName getRequestorName()
    • getRequestList

      public ASN1Sequence getRequestList()
    • getRequestExtensions

      public Extensions getRequestExtensions()
    • toASN1Primitive

      public ASN1Primitive toASN1Primitive()
      Produce an object suitable for an ASN1OutputStream.
       TBSRequest      ::=     SEQUENCE {
           version             [0]     EXPLICIT Version DEFAULT v1,
           requestorName       [1]     EXPLICIT GeneralName OPTIONAL,
           requestList                 SEQUENCE OF Request,
           requestExtensions   [2]     EXPLICIT Extensions OPTIONAL }
       
      Specified by:
      toASN1Primitive in interface ASN1Encodable
      Specified by:
      toASN1Primitive in class ASN1Object
      Returns:
      a primitive representation of this object.