class sun.security.util.DerIndefLenConverter
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.security.util.DerIndefLenConverter
  super_class: java.lang.Object
{
  private static final int TAG_MASK;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 31

  private static final int FORM_MASK;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 32

  private static final int CLASS_MASK;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 192

  private static final int LEN_LONG;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 128

  private static final int LEN_MASK;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 127

  private static final int SKIP_EOC_BYTES;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  private byte[] data;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  private byte[] newData;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  private int newDataPos;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int dataPos;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int dataSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int index;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int unresolved;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private java.util.ArrayList<java.lang.Object> ndefsList;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/ArrayList<Ljava/lang/Object;>;

  private int numOfTotalLenBytes;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean isEOC(int);
    descriptor: (I)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.util.DerIndefLenConverter this
        start local 1 // int tag
         0: .line 60
            iload 1 /* tag */
            bipush 31
            iand
            ifne 4
         1: .line 61
            iload 1 /* tag */
            bipush 32
            iand
            ifne 4
         2: .line 62
            iload 1 /* tag */
            sipush 192
            iand
            ifne 4
         3: .line 60
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         4: iconst_0
            ireturn
        end local 1 // int tag
        end local 0 // sun.security.util.DerIndefLenConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/util/DerIndefLenConverter;
            0    5     1   tag  I
    MethodParameters:
      Name  Flags
      tag   

  static boolean isLongForm(int);
    descriptor: (I)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int lengthByte
         0: .line 67
            iload 0 /* lengthByte */
            sipush 128
            iand
            sipush 128
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // int lengthByte
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0  lengthByte  I
    MethodParameters:
            Name  Flags
      lengthByte  

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.security.util.DerIndefLenConverter this
         0: .line 73
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 53
            aload 0 /* this */
            iconst_0
            putfield sun.security.util.DerIndefLenConverter.unresolved:I
         2: .line 55
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield sun.security.util.DerIndefLenConverter.ndefsList:Ljava/util/ArrayList;
         3: .line 57
            aload 0 /* this */
            iconst_0
            putfield sun.security.util.DerIndefLenConverter.numOfTotalLenBytes:I
         4: .line 73
            return
        end local 0 // sun.security.util.DerIndefLenConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/util/DerIndefLenConverter;

  static boolean isIndefinite(int);
    descriptor: (I)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int lengthByte
         0: .line 85
            iload 0 /* lengthByte */
            invokestatic sun.security.util.DerIndefLenConverter.isLongForm:(I)Z
            ifeq 1
            iload 0 /* lengthByte */
            bipush 127
            iand
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // int lengthByte
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0  lengthByte  I
    MethodParameters:
            Name  Flags
      lengthByte  

  private void parseTag();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // sun.security.util.DerIndefLenConverter this
         0: .line 93
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataSize:I
            if_icmpne 2
         1: .line 94
            return
         2: .line 96
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.data:[B
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            baload
            invokevirtual sun.security.util.DerIndefLenConverter.isEOC:(I)Z
            ifeq 22
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.data:[B
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            iconst_1
            iadd
            baload
            ifne 22
         3: .line 97
            iconst_0
            istore 1 /* numOfEncapsulatedLenBytes */
        start local 1 // int numOfEncapsulatedLenBytes
         4: .line 98
            aconst_null
            astore 2 /* elem */
        start local 2 // java.lang.Object elem
         5: .line 100
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.ndefsList:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            iconst_1
            isub
            istore 3 /* index */
        start local 3 // int index
         6: goto 12
         7: .line 103
      StackMap locals: int java.lang.Object int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.ndefsList:Ljava/util/ArrayList;
            iload 3 /* index */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            astore 2 /* elem */
         8: .line 104
            aload 2 /* elem */
            instanceof java.lang.Integer
            ifeq 10
         9: .line 105
            goto 13
        10: .line 107
      StackMap locals:
      StackMap stack:
            iload 1 /* numOfEncapsulatedLenBytes */
            aload 2 /* elem */
            checkcast byte[]
            arraylength
            iconst_3
            isub
            iadd
            istore 1 /* numOfEncapsulatedLenBytes */
        11: .line 100
            iinc 3 /* index */ -1
      StackMap locals:
      StackMap stack:
        12: iload 3 /* index */
            ifge 7
        13: .line 110
      StackMap locals:
      StackMap stack:
            iload 3 /* index */
            ifge 15
        14: .line 111
            new java.io.IOException
            dup
            ldc "EOC does not have matching indefinite-length tag"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        15: .line 114
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            aload 2 /* elem */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            isub
        16: .line 115
            iload 1 /* numOfEncapsulatedLenBytes */
        17: .line 114
            iadd
            istore 4 /* sectionLen */
        start local 4 // int sectionLen
        18: .line 116
            aload 0 /* this */
            iload 4 /* sectionLen */
            invokevirtual sun.security.util.DerIndefLenConverter.getLengthBytes:(I)[B
            astore 5 /* sectionLenBytes */
        start local 5 // byte[] sectionLenBytes
        19: .line 117
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.ndefsList:Ljava/util/ArrayList;
            iload 3 /* index */
            aload 5 /* sectionLenBytes */
            invokevirtual java.util.ArrayList.set:(ILjava/lang/Object;)Ljava/lang/Object;
            pop
        20: .line 118
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.unresolved:I
            iconst_1
            isub
            putfield sun.security.util.DerIndefLenConverter.unresolved:I
        21: .line 124
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.numOfTotalLenBytes:I
            aload 5 /* sectionLenBytes */
            arraylength
            iconst_3
            isub
            iadd
            putfield sun.security.util.DerIndefLenConverter.numOfTotalLenBytes:I
        end local 5 // byte[] sectionLenBytes
        end local 4 // int sectionLen
        end local 3 // int index
        end local 2 // java.lang.Object elem
        end local 1 // int numOfEncapsulatedLenBytes
        22: .line 126
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.dataPos:I
        23: .line 127
            goto 26
      StackMap locals:
      StackMap stack: java.lang.IndexOutOfBoundsException
        24: astore 1 /* iobe */
        start local 1 // java.lang.IndexOutOfBoundsException iobe
        25: .line 128
            new java.io.IOException
            dup
            aload 1 /* iobe */
            invokespecial java.io.IOException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.IndexOutOfBoundsException iobe
        26: .line 130
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.security.util.DerIndefLenConverter this
      LocalVariableTable:
        Start  End  Slot                       Name  Signature
            0   27     0                       this  Lsun/security/util/DerIndefLenConverter;
            4   22     1  numOfEncapsulatedLenBytes  I
            5   22     2                       elem  Ljava/lang/Object;
            6   22     3                      index  I
           18   22     4                 sectionLen  I
           19   22     5            sectionLenBytes  [B
           25   26     1                       iobe  Ljava/lang/IndexOutOfBoundsException;
      Exception table:
        from    to  target  type
           2    23      24  Class java.lang.IndexOutOfBoundsException
    Exceptions:
      throws java.io.IOException

  private void writeTag();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // sun.security.util.DerIndefLenConverter this
         0: .line 137
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataSize:I
            if_icmpne 2
         1: .line 138
            return
         2: .line 139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.data:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.dataPos:I
            baload
            istore 1 /* tag */
        start local 1 // int tag
         3: .line 140
            aload 0 /* this */
            iload 1 /* tag */
            invokevirtual sun.security.util.DerIndefLenConverter.isEOC:(I)Z
            ifeq 7
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.data:[B
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            baload
            ifne 7
         4: .line 141
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.dataPos:I
         5: .line 142
            aload 0 /* this */
            invokevirtual sun.security.util.DerIndefLenConverter.writeTag:()V
         6: .line 143
            goto 8
         7: .line 144
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.newDataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.newDataPos:I
            iload 1 /* tag */
            i2b
            bastore
         8: .line 145
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int tag
        end local 0 // sun.security.util.DerIndefLenConverter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lsun/security/util/DerIndefLenConverter;
            3    9     1   tag  I

  private int parseLength();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=1
        start local 0 // sun.security.util.DerIndefLenConverter this
         0: .line 152
            iconst_0
            istore 1 /* curLen */
        start local 1 // int curLen
         1: .line 153
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataSize:I
            if_icmpne 3
         2: .line 154
            iload 1 /* curLen */
            ireturn
         3: .line 155
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.data:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.dataPos:I
            baload
            sipush 255
            iand
            istore 2 /* lenByte */
        start local 2 // int lenByte
         4: .line 156
            iload 2 /* lenByte */
            invokestatic sun.security.util.DerIndefLenConverter.isIndefinite:(I)Z
            ifeq 8
         5: .line 157
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.ndefsList:Ljava/util/ArrayList;
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         6: .line 158
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.unresolved:I
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.unresolved:I
         7: .line 159
            iload 1 /* curLen */
            ireturn
         8: .line 161
      StackMap locals: int
      StackMap stack:
            iload 2 /* lenByte */
            invokestatic sun.security.util.DerIndefLenConverter.isLongForm:(I)Z
            ifeq 21
         9: .line 162
            iload 2 /* lenByte */
            bipush 127
            iand
            istore 2 /* lenByte */
        10: .line 163
            iload 2 /* lenByte */
            iconst_4
            if_icmple 12
        11: .line 164
            new java.io.IOException
            dup
            ldc "Too much data"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 166
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataSize:I
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            isub
            iload 2 /* lenByte */
            iconst_1
            iadd
            if_icmpge 14
        13: .line 167
            new java.io.IOException
            dup
            ldc "Too little data"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        14: .line 169
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        15: goto 18
        16: .line 170
      StackMap locals: int
      StackMap stack:
            iload 1 /* curLen */
            bipush 8
            ishl
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.data:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.dataPos:I
            baload
            sipush 255
            iand
            iadd
            istore 1 /* curLen */
        17: .line 169
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        18: iload 3 /* i */
            iload 2 /* lenByte */
            if_icmplt 16
        end local 3 // int i
        19: .line 172
            iload 1 /* curLen */
            ifge 22
        20: .line 173
            new java.io.IOException
            dup
            ldc "Invalid length bytes"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        21: .line 176
      StackMap locals:
      StackMap stack:
            iload 2 /* lenByte */
            bipush 127
            iand
            istore 1 /* curLen */
        22: .line 178
      StackMap locals:
      StackMap stack:
            iload 1 /* curLen */
            ireturn
        end local 2 // int lenByte
        end local 1 // int curLen
        end local 0 // sun.security.util.DerIndefLenConverter this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   23     0     this  Lsun/security/util/DerIndefLenConverter;
            1   23     1   curLen  I
            4   23     2  lenByte  I
           15   19     3        i  I
    Exceptions:
      throws java.io.IOException

  private void writeLengthAndValue();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=1
        start local 0 // sun.security.util.DerIndefLenConverter this
         0: .line 188
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataSize:I
            if_icmpne 2
         1: .line 189
            return
         2: .line 190
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* curLen */
        start local 1 // int curLen
         3: .line 191
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.data:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.dataPos:I
            baload
            sipush 255
            iand
            istore 2 /* lenByte */
        start local 2 // int lenByte
         4: .line 192
            iload 2 /* lenByte */
            invokestatic sun.security.util.DerIndefLenConverter.isIndefinite:(I)Z
            ifeq 11
         5: .line 193
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.ndefsList:Ljava/util/ArrayList;
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.index:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.index:I
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast byte[]
            astore 3 /* lenBytes */
        start local 3 // byte[] lenBytes
         6: .line 194
            aload 3 /* lenBytes */
            iconst_0
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newDataPos:I
         7: .line 195
            aload 3 /* lenBytes */
            arraylength
         8: .line 194
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 196
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.newDataPos:I
            aload 3 /* lenBytes */
            arraylength
            iadd
            putfield sun.security.util.DerIndefLenConverter.newDataPos:I
        10: .line 197
            return
        end local 3 // byte[] lenBytes
        11: .line 199
      StackMap locals: int int
      StackMap stack:
            iload 2 /* lenByte */
            invokestatic sun.security.util.DerIndefLenConverter.isLongForm:(I)Z
            ifeq 20
        12: .line 200
            iload 2 /* lenByte */
            bipush 127
            iand
            istore 2 /* lenByte */
        13: .line 201
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        14: goto 17
        15: .line 202
      StackMap locals: int
      StackMap stack:
            iload 1 /* curLen */
            bipush 8
            ishl
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.data:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.dataPos:I
            baload
            sipush 255
            iand
            iadd
            istore 1 /* curLen */
        16: .line 201
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 3 /* i */
            iload 2 /* lenByte */
            if_icmplt 15
        end local 3 // int i
        18: .line 204
            iload 1 /* curLen */
            ifge 21
        19: .line 205
            new java.io.IOException
            dup
            ldc "Invalid length bytes"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 208
      StackMap locals:
      StackMap stack:
            iload 2 /* lenByte */
            bipush 127
            iand
            istore 1 /* curLen */
        21: .line 210
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* curLen */
            invokevirtual sun.security.util.DerIndefLenConverter.writeLength:(I)V
        22: .line 211
            aload 0 /* this */
            iload 1 /* curLen */
            invokevirtual sun.security.util.DerIndefLenConverter.writeValue:(I)V
        23: .line 212
            return
        end local 2 // int lenByte
        end local 1 // int curLen
        end local 0 // sun.security.util.DerIndefLenConverter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   24     0      this  Lsun/security/util/DerIndefLenConverter;
            3   24     1    curLen  I
            4   24     2   lenByte  I
            6   11     3  lenBytes  [B
           14   18     3         i  I
    Exceptions:
      throws java.io.IOException

  private void writeLength(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // sun.security.util.DerIndefLenConverter this
        start local 1 // int curLen
         0: .line 215
            iload 1 /* curLen */
            sipush 128
            if_icmpge 3
         1: .line 216
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.newDataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.newDataPos:I
            iload 1 /* curLen */
            i2b
            bastore
         2: .line 218
            goto 23
      StackMap locals:
      StackMap stack:
         3: iload 1 /* curLen */
            sipush 256
            if_icmpge 7
         4: .line 219
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.newDataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.newDataPos:I
            bipush -127
            bastore
         5: .line 220
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.newDataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.newDataPos:I
            iload 1 /* curLen */
            i2b
            bastore
         6: .line 222
            goto 23
      StackMap locals:
      StackMap stack:
         7: iload 1 /* curLen */
            ldc 65536
            if_icmpge 12
         8: .line 223
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.newDataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.newDataPos:I
            bipush -126
            bastore
         9: .line 224
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.newDataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.newDataPos:I
            iload 1 /* curLen */
            bipush 8
            ishr
            i2b
            bastore
        10: .line 225
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.newDataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.newDataPos:I
            iload 1 /* curLen */
            i2b
            bastore
        11: .line 227
            goto 23
      StackMap locals:
      StackMap stack:
        12: iload 1 /* curLen */
            ldc 16777216
            if_icmpge 18
        13: .line 228
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.newDataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.newDataPos:I
            bipush -125
            bastore
        14: .line 229
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.newDataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.newDataPos:I
            iload 1 /* curLen */
            bipush 16
            ishr
            i2b
            bastore
        15: .line 230
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.newDataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.newDataPos:I
            iload 1 /* curLen */
            bipush 8
            ishr
            i2b
            bastore
        16: .line 231
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.newDataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.newDataPos:I
            iload 1 /* curLen */
            i2b
            bastore
        17: .line 233
            goto 23
        18: .line 234
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.newDataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.newDataPos:I
            bipush -124
            bastore
        19: .line 235
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.newDataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.newDataPos:I
            iload 1 /* curLen */
            bipush 24
            ishr
            i2b
            bastore
        20: .line 236
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.newDataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.newDataPos:I
            iload 1 /* curLen */
            bipush 16
            ishr
            i2b
            bastore
        21: .line 237
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.newDataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.newDataPos:I
            iload 1 /* curLen */
            bipush 8
            ishr
            i2b
            bastore
        22: .line 238
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.newDataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.newDataPos:I
            iload 1 /* curLen */
            i2b
            bastore
        23: .line 240
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int curLen
        end local 0 // sun.security.util.DerIndefLenConverter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   24     0    this  Lsun/security/util/DerIndefLenConverter;
            0   24     1  curLen  I
    MethodParameters:
        Name  Flags
      curLen  

  private byte[] getLengthBytes(int);
    descriptor: (I)[B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // sun.security.util.DerIndefLenConverter this
        start local 1 // int curLen
         0: .line 244
            iconst_0
            istore 3 /* index */
        start local 3 // int index
         1: .line 246
            iload 1 /* curLen */
            sipush 128
            if_icmpge 5
         2: .line 247
            iconst_1
            newarray 8
            astore 2 /* lenBytes */
        start local 2 // byte[] lenBytes
         3: .line 248
            aload 2 /* lenBytes */
            iload 3 /* index */
            iinc 3 /* index */ 1
            iload 1 /* curLen */
            i2b
            bastore
         4: .line 250
            goto 29
        end local 2 // byte[] lenBytes
      StackMap locals: sun.security.util.DerIndefLenConverter int top int
      StackMap stack:
         5: iload 1 /* curLen */
            sipush 256
            if_icmpge 10
         6: .line 251
            iconst_2
            newarray 8
            astore 2 /* lenBytes */
        start local 2 // byte[] lenBytes
         7: .line 252
            aload 2 /* lenBytes */
            iload 3 /* index */
            iinc 3 /* index */ 1
            bipush -127
            bastore
         8: .line 253
            aload 2 /* lenBytes */
            iload 3 /* index */
            iinc 3 /* index */ 1
            iload 1 /* curLen */
            i2b
            bastore
         9: .line 255
            goto 29
        end local 2 // byte[] lenBytes
      StackMap locals:
      StackMap stack:
        10: iload 1 /* curLen */
            ldc 65536
            if_icmpge 16
        11: .line 256
            iconst_3
            newarray 8
            astore 2 /* lenBytes */
        start local 2 // byte[] lenBytes
        12: .line 257
            aload 2 /* lenBytes */
            iload 3 /* index */
            iinc 3 /* index */ 1
            bipush -126
            bastore
        13: .line 258
            aload 2 /* lenBytes */
            iload 3 /* index */
            iinc 3 /* index */ 1
            iload 1 /* curLen */
            bipush 8
            ishr
            i2b
            bastore
        14: .line 259
            aload 2 /* lenBytes */
            iload 3 /* index */
            iinc 3 /* index */ 1
            iload 1 /* curLen */
            i2b
            bastore
        15: .line 261
            goto 29
        end local 2 // byte[] lenBytes
      StackMap locals:
      StackMap stack:
        16: iload 1 /* curLen */
            ldc 16777216
            if_icmpge 23
        17: .line 262
            iconst_4
            newarray 8
            astore 2 /* lenBytes */
        start local 2 // byte[] lenBytes
        18: .line 263
            aload 2 /* lenBytes */
            iload 3 /* index */
            iinc 3 /* index */ 1
            bipush -125
            bastore
        19: .line 264
            aload 2 /* lenBytes */
            iload 3 /* index */
            iinc 3 /* index */ 1
            iload 1 /* curLen */
            bipush 16
            ishr
            i2b
            bastore
        20: .line 265
            aload 2 /* lenBytes */
            iload 3 /* index */
            iinc 3 /* index */ 1
            iload 1 /* curLen */
            bipush 8
            ishr
            i2b
            bastore
        21: .line 266
            aload 2 /* lenBytes */
            iload 3 /* index */
            iinc 3 /* index */ 1
            iload 1 /* curLen */
            i2b
            bastore
        22: .line 268
            goto 29
        end local 2 // byte[] lenBytes
        23: .line 269
      StackMap locals:
      StackMap stack:
            iconst_5
            newarray 8
            astore 2 /* lenBytes */
        start local 2 // byte[] lenBytes
        24: .line 270
            aload 2 /* lenBytes */
            iload 3 /* index */
            iinc 3 /* index */ 1
            bipush -124
            bastore
        25: .line 271
            aload 2 /* lenBytes */
            iload 3 /* index */
            iinc 3 /* index */ 1
            iload 1 /* curLen */
            bipush 24
            ishr
            i2b
            bastore
        26: .line 272
            aload 2 /* lenBytes */
            iload 3 /* index */
            iinc 3 /* index */ 1
            iload 1 /* curLen */
            bipush 16
            ishr
            i2b
            bastore
        27: .line 273
            aload 2 /* lenBytes */
            iload 3 /* index */
            iinc 3 /* index */ 1
            iload 1 /* curLen */
            bipush 8
            ishr
            i2b
            bastore
        28: .line 274
            aload 2 /* lenBytes */
            iload 3 /* index */
            iinc 3 /* index */ 1
            iload 1 /* curLen */
            i2b
            bastore
        29: .line 277
      StackMap locals: sun.security.util.DerIndefLenConverter int byte[] int
      StackMap stack:
            aload 2 /* lenBytes */
            areturn
        end local 3 // int index
        end local 2 // byte[] lenBytes
        end local 1 // int curLen
        end local 0 // sun.security.util.DerIndefLenConverter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   30     0      this  Lsun/security/util/DerIndefLenConverter;
            0   30     1    curLen  I
            3    5     2  lenBytes  [B
            7   10     2  lenBytes  [B
           12   16     2  lenBytes  [B
           18   23     2  lenBytes  [B
           24   30     2  lenBytes  [B
            1   30     3     index  I
    MethodParameters:
        Name  Flags
      curLen  

  private int getNumOfLenBytes(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // sun.security.util.DerIndefLenConverter this
        start local 1 // int len
         0: .line 283
            iconst_0
            istore 2 /* numOfLenBytes */
        start local 2 // int numOfLenBytes
         1: .line 285
            iload 1 /* len */
            sipush 128
            if_icmpge 4
         2: .line 286
            iconst_1
            istore 2 /* numOfLenBytes */
         3: .line 287
            goto 14
      StackMap locals: int
      StackMap stack:
         4: iload 1 /* len */
            sipush 256
            if_icmpge 7
         5: .line 288
            iconst_2
            istore 2 /* numOfLenBytes */
         6: .line 289
            goto 14
      StackMap locals:
      StackMap stack:
         7: iload 1 /* len */
            ldc 65536
            if_icmpge 10
         8: .line 290
            iconst_3
            istore 2 /* numOfLenBytes */
         9: .line 291
            goto 14
      StackMap locals:
      StackMap stack:
        10: iload 1 /* len */
            ldc 16777216
            if_icmpge 13
        11: .line 292
            iconst_4
            istore 2 /* numOfLenBytes */
        12: .line 293
            goto 14
        13: .line 294
      StackMap locals:
      StackMap stack:
            iconst_5
            istore 2 /* numOfLenBytes */
        14: .line 296
      StackMap locals:
      StackMap stack:
            iload 2 /* numOfLenBytes */
            ireturn
        end local 2 // int numOfLenBytes
        end local 1 // int len
        end local 0 // sun.security.util.DerIndefLenConverter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   15     0           this  Lsun/security/util/DerIndefLenConverter;
            0   15     1            len  I
            1   15     2  numOfLenBytes  I
    MethodParameters:
      Name  Flags
      len   

  private void parseValue(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.security.util.DerIndefLenConverter this
        start local 1 // int curLen
         0: .line 303
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            iload 1 /* curLen */
            iadd
            putfield sun.security.util.DerIndefLenConverter.dataPos:I
         1: .line 304
            return
        end local 1 // int curLen
        end local 0 // sun.security.util.DerIndefLenConverter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lsun/security/util/DerIndefLenConverter;
            0    2     1  curLen  I
    MethodParameters:
        Name  Flags
      curLen  

  private void writeValue(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // sun.security.util.DerIndefLenConverter this
        start local 1 // int curLen
         0: .line 310
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 4
         2: .line 311
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.newDataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.newDataPos:I
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.data:[B
            aload 0 /* this */
            dup
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            dup_x1
            iconst_1
            iadd
            putfield sun.security.util.DerIndefLenConverter.dataPos:I
            baload
            bastore
         3: .line 310
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 2 /* i */
            iload 1 /* curLen */
            if_icmplt 2
        end local 2 // int i
         5: .line 312
            return
        end local 1 // int curLen
        end local 0 // sun.security.util.DerIndefLenConverter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lsun/security/util/DerIndefLenConverter;
            0    6     1  curLen  I
            1    5     2       i  I
    MethodParameters:
        Name  Flags
      curLen  

  byte[] convert(byte[]);
    descriptor: ([B)[B
    flags: (0x0000) 
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // sun.security.util.DerIndefLenConverter this
        start local 1 // byte[] indefData
         0: .line 325
            aload 0 /* this */
            aload 1 /* indefData */
            putfield sun.security.util.DerIndefLenConverter.data:[B
         1: .line 326
            aload 0 /* this */
            iconst_0
            putfield sun.security.util.DerIndefLenConverter.dataPos:I
            aload 0 /* this */
            iconst_0
            putfield sun.security.util.DerIndefLenConverter.index:I
         2: .line 327
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.data:[B
            arraylength
            putfield sun.security.util.DerIndefLenConverter.dataSize:I
         3: .line 328
            iconst_0
            istore 2 /* len */
        start local 2 // int len
         4: .line 329
            iconst_0
            istore 3 /* unused */
        start local 3 // int unused
         5: .line 332
            goto 13
         6: .line 333
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.security.util.DerIndefLenConverter.parseTag:()V
         7: .line 334
            aload 0 /* this */
            invokevirtual sun.security.util.DerIndefLenConverter.parseLength:()I
            istore 2 /* len */
         8: .line 335
            aload 0 /* this */
            iload 2 /* len */
            invokevirtual sun.security.util.DerIndefLenConverter.parseValue:(I)V
         9: .line 336
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.unresolved:I
            ifne 13
        10: .line 337
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataSize:I
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            isub
            istore 3 /* unused */
        11: .line 338
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            putfield sun.security.util.DerIndefLenConverter.dataSize:I
        12: .line 339
            goto 14
        13: .line 332
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataSize:I
            if_icmplt 6
        14: .line 343
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.unresolved:I
            ifeq 16
        15: .line 344
            new java.io.IOException
            dup
            ldc "not all indef len BER resolved"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        16: .line 347
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataSize:I
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.numOfTotalLenBytes:I
            iadd
            iload 3 /* unused */
            iadd
            newarray 8
            putfield sun.security.util.DerIndefLenConverter.newData:[B
        17: .line 348
            aload 0 /* this */
            iconst_0
            putfield sun.security.util.DerIndefLenConverter.dataPos:I
            aload 0 /* this */
            iconst_0
            putfield sun.security.util.DerIndefLenConverter.newDataPos:I
            aload 0 /* this */
            iconst_0
            putfield sun.security.util.DerIndefLenConverter.index:I
        18: .line 352
            goto 21
        19: .line 353
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.security.util.DerIndefLenConverter.writeTag:()V
        20: .line 354
            aload 0 /* this */
            invokevirtual sun.security.util.DerIndefLenConverter.writeLengthAndValue:()V
        21: .line 352
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataPos:I
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataSize:I
            if_icmplt 19
        22: .line 356
            aload 1 /* indefData */
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataSize:I
        23: .line 357
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.dataSize:I
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.numOfTotalLenBytes:I
            iadd
            iload 3 /* unused */
        24: .line 356
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        25: .line 359
            aload 0 /* this */
            getfield sun.security.util.DerIndefLenConverter.newData:[B
            areturn
        end local 3 // int unused
        end local 2 // int len
        end local 1 // byte[] indefData
        end local 0 // sun.security.util.DerIndefLenConverter this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   26     0       this  Lsun/security/util/DerIndefLenConverter;
            0   26     1  indefData  [B
            4   26     2        len  I
            5   26     3     unused  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      indefData  
}
SourceFile: "DerIndefLenConverter.java"