public class org.bouncycastle.asn1.pkcs.ContentInfo extends org.bouncycastle.asn1.ASN1Encodable implements org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bouncycastle.asn1.pkcs.ContentInfo
  super_class: org.bouncycastle.asn1.ASN1Encodable
{
  private org.bouncycastle.asn1.DERObjectIdentifier contentType;
    descriptor: Lorg/bouncycastle/asn1/DERObjectIdentifier;
    flags: (0x0002) ACC_PRIVATE

  private org.bouncycastle.asn1.DEREncodable content;
    descriptor: Lorg/bouncycastle/asn1/DEREncodable;
    flags: (0x0002) ACC_PRIVATE

  public static org.bouncycastle.asn1.pkcs.ContentInfo getInstance(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/bouncycastle/asn1/pkcs/ContentInfo;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // java.lang.Object obj
         0: .line 25
            aload 0 /* obj */
            instanceof org.bouncycastle.asn1.pkcs.ContentInfo
            ifeq 2
         1: .line 27
            aload 0 /* obj */
            checkcast org.bouncycastle.asn1.pkcs.ContentInfo
            areturn
         2: .line 29
      StackMap locals:
      StackMap stack:
            aload 0 /* obj */
            instanceof org.bouncycastle.asn1.ASN1Sequence
            ifeq 4
         3: .line 31
            new org.bouncycastle.asn1.pkcs.ContentInfo
            dup
            aload 0 /* obj */
            checkcast org.bouncycastle.asn1.ASN1Sequence
            invokespecial org.bouncycastle.asn1.pkcs.ContentInfo.<init>:(Lorg/bouncycastle/asn1/ASN1Sequence;)V
            areturn
         4: .line 34
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "unknown object in factory: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* obj */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // java.lang.Object obj
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  public void <init>(org.bouncycastle.asn1.ASN1Sequence);
    descriptor: (Lorg/bouncycastle/asn1/ASN1Sequence;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.bouncycastle.asn1.pkcs.ContentInfo this
        start local 1 // org.bouncycastle.asn1.ASN1Sequence seq
         0: .line 37
            aload 0 /* this */
            invokespecial org.bouncycastle.asn1.ASN1Encodable.<init>:()V
         1: .line 40
            aload 1 /* seq */
            invokevirtual org.bouncycastle.asn1.ASN1Sequence.getObjects:()Ljava/util/Enumeration;
            astore 2 /* e */
        start local 2 // java.util.Enumeration e
         2: .line 42
            aload 0 /* this */
            aload 2 /* e */
            invokeinterface java.util.Enumeration.nextElement:()Ljava/lang/Object;
            checkcast org.bouncycastle.asn1.DERObjectIdentifier
            putfield org.bouncycastle.asn1.pkcs.ContentInfo.contentType:Lorg/bouncycastle/asn1/DERObjectIdentifier;
         3: .line 44
            aload 2 /* e */
            invokeinterface java.util.Enumeration.hasMoreElements:()Z
            ifeq 5
         4: .line 46
            aload 0 /* this */
            aload 2 /* e */
            invokeinterface java.util.Enumeration.nextElement:()Ljava/lang/Object;
            checkcast org.bouncycastle.asn1.DERTaggedObject
            invokevirtual org.bouncycastle.asn1.DERTaggedObject.getObject:()Lorg/bouncycastle/asn1/DERObject;
            putfield org.bouncycastle.asn1.pkcs.ContentInfo.content:Lorg/bouncycastle/asn1/DEREncodable;
         5: .line 48
      StackMap locals: org.bouncycastle.asn1.pkcs.ContentInfo org.bouncycastle.asn1.ASN1Sequence java.util.Enumeration
      StackMap stack:
            return
        end local 2 // java.util.Enumeration e
        end local 1 // org.bouncycastle.asn1.ASN1Sequence seq
        end local 0 // org.bouncycastle.asn1.pkcs.ContentInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/bouncycastle/asn1/pkcs/ContentInfo;
            0    6     1   seq  Lorg/bouncycastle/asn1/ASN1Sequence;
            2    6     2     e  Ljava/util/Enumeration;
    MethodParameters:
      Name  Flags
      seq   

  public void <init>(org.bouncycastle.asn1.DERObjectIdentifier, org.bouncycastle.asn1.DEREncodable);
    descriptor: (Lorg/bouncycastle/asn1/DERObjectIdentifier;Lorg/bouncycastle/asn1/DEREncodable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.bouncycastle.asn1.pkcs.ContentInfo this
        start local 1 // org.bouncycastle.asn1.DERObjectIdentifier contentType
        start local 2 // org.bouncycastle.asn1.DEREncodable content
         0: .line 50
            aload 0 /* this */
            invokespecial org.bouncycastle.asn1.ASN1Encodable.<init>:()V
         1: .line 54
            aload 0 /* this */
            aload 1 /* contentType */
            putfield org.bouncycastle.asn1.pkcs.ContentInfo.contentType:Lorg/bouncycastle/asn1/DERObjectIdentifier;
         2: .line 55
            aload 0 /* this */
            aload 2 /* content */
            putfield org.bouncycastle.asn1.pkcs.ContentInfo.content:Lorg/bouncycastle/asn1/DEREncodable;
         3: .line 56
            return
        end local 2 // org.bouncycastle.asn1.DEREncodable content
        end local 1 // org.bouncycastle.asn1.DERObjectIdentifier contentType
        end local 0 // org.bouncycastle.asn1.pkcs.ContentInfo this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/bouncycastle/asn1/pkcs/ContentInfo;
            0    4     1  contentType  Lorg/bouncycastle/asn1/DERObjectIdentifier;
            0    4     2      content  Lorg/bouncycastle/asn1/DEREncodable;
    MethodParameters:
             Name  Flags
      contentType  
      content      

  public org.bouncycastle.asn1.DERObjectIdentifier getContentType();
    descriptor: ()Lorg/bouncycastle/asn1/DERObjectIdentifier;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.asn1.pkcs.ContentInfo this
         0: .line 60
            aload 0 /* this */
            getfield org.bouncycastle.asn1.pkcs.ContentInfo.contentType:Lorg/bouncycastle/asn1/DERObjectIdentifier;
            areturn
        end local 0 // org.bouncycastle.asn1.pkcs.ContentInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/asn1/pkcs/ContentInfo;

  public org.bouncycastle.asn1.DEREncodable getContent();
    descriptor: ()Lorg/bouncycastle/asn1/DEREncodable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.asn1.pkcs.ContentInfo this
         0: .line 65
            aload 0 /* this */
            getfield org.bouncycastle.asn1.pkcs.ContentInfo.content:Lorg/bouncycastle/asn1/DEREncodable;
            areturn
        end local 0 // org.bouncycastle.asn1.pkcs.ContentInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/asn1/pkcs/ContentInfo;

  public org.bouncycastle.asn1.DERObject toASN1Object();
    descriptor: ()Lorg/bouncycastle/asn1/DERObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.bouncycastle.asn1.pkcs.ContentInfo this
         0: .line 79
            new org.bouncycastle.asn1.ASN1EncodableVector
            dup
            invokespecial org.bouncycastle.asn1.ASN1EncodableVector.<init>:()V
            astore 1 /* v */
        start local 1 // org.bouncycastle.asn1.ASN1EncodableVector v
         1: .line 81
            aload 1 /* v */
            aload 0 /* this */
            getfield org.bouncycastle.asn1.pkcs.ContentInfo.contentType:Lorg/bouncycastle/asn1/DERObjectIdentifier;
            invokevirtual org.bouncycastle.asn1.ASN1EncodableVector.add:(Lorg/bouncycastle/asn1/DEREncodable;)V
         2: .line 83
            aload 0 /* this */
            getfield org.bouncycastle.asn1.pkcs.ContentInfo.content:Lorg/bouncycastle/asn1/DEREncodable;
            ifnull 4
         3: .line 85
            aload 1 /* v */
            new org.bouncycastle.asn1.BERTaggedObject
            dup
            iconst_0
            aload 0 /* this */
            getfield org.bouncycastle.asn1.pkcs.ContentInfo.content:Lorg/bouncycastle/asn1/DEREncodable;
            invokespecial org.bouncycastle.asn1.BERTaggedObject.<init>:(ILorg/bouncycastle/asn1/DEREncodable;)V
            invokevirtual org.bouncycastle.asn1.ASN1EncodableVector.add:(Lorg/bouncycastle/asn1/DEREncodable;)V
         4: .line 88
      StackMap locals: org.bouncycastle.asn1.ASN1EncodableVector
      StackMap stack:
            new org.bouncycastle.asn1.BERSequence
            dup
            aload 1 /* v */
            invokespecial org.bouncycastle.asn1.BERSequence.<init>:(Lorg/bouncycastle/asn1/ASN1EncodableVector;)V
            areturn
        end local 1 // org.bouncycastle.asn1.ASN1EncodableVector v
        end local 0 // org.bouncycastle.asn1.pkcs.ContentInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/bouncycastle/asn1/pkcs/ContentInfo;
            1    5     1     v  Lorg/bouncycastle/asn1/ASN1EncodableVector;
}
SourceFile: "ContentInfo.java"