public class org.bouncycastle.asn1.ASN1OutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bouncycastle.asn1.ASN1OutputStream
  super_class: java.lang.Object
{
  private java.io.OutputStream os;
    descriptor: Ljava/io/OutputStream;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bouncycastle.asn1.ASN1OutputStream this
        start local 1 // java.io.OutputStream os
         0: .line 13
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 16
            aload 0 /* this */
            aload 1 /* os */
            putfield org.bouncycastle.asn1.ASN1OutputStream.os:Ljava/io/OutputStream;
         2: .line 17
            return
        end local 1 // java.io.OutputStream os
        end local 0 // org.bouncycastle.asn1.ASN1OutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/bouncycastle/asn1/ASN1OutputStream;
            0    3     1    os  Ljava/io/OutputStream;
    MethodParameters:
      Name  Flags
      os    

  void writeLength(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.bouncycastle.asn1.ASN1OutputStream this
        start local 1 // int length
         0: .line 23
            iload 1 /* length */
            bipush 127
            if_icmple 13
         1: .line 25
            iconst_1
            istore 2 /* size */
        start local 2 // int size
         2: .line 26
            iload 1 /* length */
            istore 3 /* val */
        start local 3 // int val
         3: .line 28
            goto 5
         4: .line 30
      StackMap locals: int int
      StackMap stack:
            iinc 2 /* size */ 1
         5: .line 28
      StackMap locals:
      StackMap stack:
            iload 3 /* val */
            bipush 8
            iushr
            dup
            istore 3 /* val */
            ifne 4
         6: .line 33
            aload 0 /* this */
            iload 2 /* size */
            sipush 128
            ior
            i2b
            invokevirtual org.bouncycastle.asn1.ASN1OutputStream.write:(I)V
         7: .line 35
            iload 2 /* size */
            iconst_1
            isub
            bipush 8
            imul
            istore 4 /* i */
        start local 4 // int i
         8: goto 11
         9: .line 37
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* length */
            iload 4 /* i */
            ishr
            i2b
            invokevirtual org.bouncycastle.asn1.ASN1OutputStream.write:(I)V
        10: .line 35
            iinc 4 /* i */ -8
      StackMap locals:
      StackMap stack:
        11: iload 4 /* i */
            ifge 9
        end local 4 // int i
        end local 3 // int val
        end local 2 // int size
        12: .line 39
            goto 14
        13: .line 42
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* length */
            i2b
            invokevirtual org.bouncycastle.asn1.ASN1OutputStream.write:(I)V
        14: .line 44
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int length
        end local 0 // org.bouncycastle.asn1.ASN1OutputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   15     0    this  Lorg/bouncycastle/asn1/ASN1OutputStream;
            0   15     1  length  I
            2   12     2    size  I
            3   12     3     val  I
            8   12     4       i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      length  

  void write(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bouncycastle.asn1.ASN1OutputStream this
        start local 1 // int b
         0: .line 49
            aload 0 /* this */
            getfield org.bouncycastle.asn1.ASN1OutputStream.os:Ljava/io/OutputStream;
            iload 1 /* b */
            invokevirtual java.io.OutputStream.write:(I)V
         1: .line 50
            return
        end local 1 // int b
        end local 0 // org.bouncycastle.asn1.ASN1OutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/bouncycastle/asn1/ASN1OutputStream;
            0    2     1     b  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  void write(byte[]);
    descriptor: ([B)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bouncycastle.asn1.ASN1OutputStream this
        start local 1 // byte[] bytes
         0: .line 55
            aload 0 /* this */
            getfield org.bouncycastle.asn1.ASN1OutputStream.os:Ljava/io/OutputStream;
            aload 1 /* bytes */
            invokevirtual java.io.OutputStream.write:([B)V
         1: .line 56
            return
        end local 1 // byte[] bytes
        end local 0 // org.bouncycastle.asn1.ASN1OutputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/bouncycastle/asn1/ASN1OutputStream;
            0    2     1  bytes  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      bytes  

  void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0000) 
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.bouncycastle.asn1.ASN1OutputStream this
        start local 1 // byte[] bytes
        start local 2 // int off
        start local 3 // int len
         0: .line 61
            aload 0 /* this */
            getfield org.bouncycastle.asn1.ASN1OutputStream.os:Ljava/io/OutputStream;
            aload 1 /* bytes */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.OutputStream.write:([BII)V
         1: .line 62
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] bytes
        end local 0 // org.bouncycastle.asn1.ASN1OutputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/bouncycastle/asn1/ASN1OutputStream;
            0    2     1  bytes  [B
            0    2     2    off  I
            0    2     3    len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      bytes  
      off    
      len    

  void writeEncoded(int, byte[]);
    descriptor: (I[B)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.bouncycastle.asn1.ASN1OutputStream this
        start local 1 // int tag
        start local 2 // byte[] bytes
         0: .line 69
            aload 0 /* this */
            iload 1 /* tag */
            invokevirtual org.bouncycastle.asn1.ASN1OutputStream.write:(I)V
         1: .line 70
            aload 0 /* this */
            aload 2 /* bytes */
            arraylength
            invokevirtual org.bouncycastle.asn1.ASN1OutputStream.writeLength:(I)V
         2: .line 71
            aload 0 /* this */
            aload 2 /* bytes */
            invokevirtual org.bouncycastle.asn1.ASN1OutputStream.write:([B)V
         3: .line 72
            return
        end local 2 // byte[] bytes
        end local 1 // int tag
        end local 0 // org.bouncycastle.asn1.ASN1OutputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/bouncycastle/asn1/ASN1OutputStream;
            0    4     1    tag  I
            0    4     2  bytes  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      tag    
      bytes  

  void writeTag(int, int);
    descriptor: (II)V
    flags: (0x0000) 
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.bouncycastle.asn1.ASN1OutputStream this
        start local 1 // int flags
        start local 2 // int tagNo
         0: .line 77
            iload 2 /* tagNo */
            bipush 31
            if_icmpge 3
         1: .line 79
            aload 0 /* this */
            iload 1 /* flags */
            iload 2 /* tagNo */
            ior
            invokevirtual org.bouncycastle.asn1.ASN1OutputStream.write:(I)V
         2: .line 80
            goto 15
         3: .line 83
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* flags */
            bipush 31
            ior
            invokevirtual org.bouncycastle.asn1.ASN1OutputStream.write:(I)V
         4: .line 84
            iload 2 /* tagNo */
            sipush 128
            if_icmpge 7
         5: .line 86
            aload 0 /* this */
            iload 2 /* tagNo */
            invokevirtual org.bouncycastle.asn1.ASN1OutputStream.write:(I)V
         6: .line 87
            goto 15
         7: .line 90
      StackMap locals:
      StackMap stack:
            iconst_5
            newarray 8
            astore 3 /* stack */
        start local 3 // byte[] stack
         8: .line 91
            aload 3 /* stack */
            arraylength
            istore 4 /* pos */
        start local 4 // int pos
         9: .line 93
            aload 3 /* stack */
            iinc 4 /* pos */ -1
            iload 4 /* pos */
            iload 2 /* tagNo */
            bipush 127
            iand
            i2b
            bastore
        10: .line 97
      StackMap locals: byte[] int
      StackMap stack:
            iload 2 /* tagNo */
            bipush 7
            ishr
            istore 2 /* tagNo */
        11: .line 98
            aload 3 /* stack */
            iinc 4 /* pos */ -1
            iload 4 /* pos */
            iload 2 /* tagNo */
            bipush 127
            iand
            sipush 128
            ior
            i2b
            bastore
        12: .line 100
            iload 2 /* tagNo */
            bipush 127
        13: .line 95
            if_icmpgt 10
        14: .line 102
            aload 0 /* this */
            aload 3 /* stack */
            iload 4 /* pos */
            aload 3 /* stack */
            arraylength
            iload 4 /* pos */
            isub
            invokevirtual org.bouncycastle.asn1.ASN1OutputStream.write:([BII)V
        end local 4 // int pos
        end local 3 // byte[] stack
        15: .line 105
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int tagNo
        end local 1 // int flags
        end local 0 // org.bouncycastle.asn1.ASN1OutputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   16     0   this  Lorg/bouncycastle/asn1/ASN1OutputStream;
            0   16     1  flags  I
            0   16     2  tagNo  I
            8   15     3  stack  [B
            9   15     4    pos  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      flags  
      tagNo  

  void writeEncoded(int, int, byte[]);
    descriptor: (II[B)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.bouncycastle.asn1.ASN1OutputStream this
        start local 1 // int flags
        start local 2 // int tagNo
        start local 3 // byte[] bytes
         0: .line 110
            aload 0 /* this */
            iload 1 /* flags */
            iload 2 /* tagNo */
            invokevirtual org.bouncycastle.asn1.ASN1OutputStream.writeTag:(II)V
         1: .line 111
            aload 0 /* this */
            aload 3 /* bytes */
            arraylength
            invokevirtual org.bouncycastle.asn1.ASN1OutputStream.writeLength:(I)V
         2: .line 112
            aload 0 /* this */
            aload 3 /* bytes */
            invokevirtual org.bouncycastle.asn1.ASN1OutputStream.write:([B)V
         3: .line 113
            return
        end local 3 // byte[] bytes
        end local 2 // int tagNo
        end local 1 // int flags
        end local 0 // org.bouncycastle.asn1.ASN1OutputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/bouncycastle/asn1/ASN1OutputStream;
            0    4     1  flags  I
            0    4     2  tagNo  I
            0    4     3  bytes  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      flags  
      tagNo  
      bytes  

  protected void writeNull();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.bouncycastle.asn1.ASN1OutputStream this
         0: .line 118
            aload 0 /* this */
            getfield org.bouncycastle.asn1.ASN1OutputStream.os:Ljava/io/OutputStream;
            iconst_5
            invokevirtual java.io.OutputStream.write:(I)V
         1: .line 119
            aload 0 /* this */
            getfield org.bouncycastle.asn1.ASN1OutputStream.os:Ljava/io/OutputStream;
            iconst_0
            invokevirtual java.io.OutputStream.write:(I)V
         2: .line 120
            return
        end local 0 // org.bouncycastle.asn1.ASN1OutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/bouncycastle/asn1/ASN1OutputStream;
    Exceptions:
      throws java.io.IOException

  public void writeObject(org.bouncycastle.asn1.ASN1Encodable);
    descriptor: (Lorg/bouncycastle/asn1/ASN1Encodable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.bouncycastle.asn1.ASN1OutputStream this
        start local 1 // org.bouncycastle.asn1.ASN1Encodable obj
         0: .line 126
            aload 1 /* obj */
            ifnull 3
         1: .line 128
            aload 1 /* obj */
            invokeinterface org.bouncycastle.asn1.ASN1Encodable.toASN1Primitive:()Lorg/bouncycastle/asn1/ASN1Primitive;
            aload 0 /* this */
            invokevirtual org.bouncycastle.asn1.ASN1Primitive.encode:(Lorg/bouncycastle/asn1/ASN1OutputStream;)V
         2: .line 129
            goto 4
         3: .line 132
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            ldc "null object detected"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 134
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.bouncycastle.asn1.ASN1Encodable obj
        end local 0 // org.bouncycastle.asn1.ASN1OutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/bouncycastle/asn1/ASN1OutputStream;
            0    5     1   obj  Lorg/bouncycastle/asn1/ASN1Encodable;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      obj   

  void writeImplicitObject(org.bouncycastle.asn1.ASN1Primitive);
    descriptor: (Lorg/bouncycastle/asn1/ASN1Primitive;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.bouncycastle.asn1.ASN1OutputStream this
        start local 1 // org.bouncycastle.asn1.ASN1Primitive obj
         0: .line 139
            aload 1 /* obj */
            ifnull 3
         1: .line 141
            aload 1 /* obj */
            new org.bouncycastle.asn1.ASN1OutputStream$ImplicitOutputStream
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.asn1.ASN1OutputStream.os:Ljava/io/OutputStream;
            invokespecial org.bouncycastle.asn1.ASN1OutputStream$ImplicitOutputStream.<init>:(Lorg/bouncycastle/asn1/ASN1OutputStream;Ljava/io/OutputStream;)V
            invokevirtual org.bouncycastle.asn1.ASN1Primitive.encode:(Lorg/bouncycastle/asn1/ASN1OutputStream;)V
         2: .line 142
            goto 4
         3: .line 145
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            ldc "null object detected"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 147
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.bouncycastle.asn1.ASN1Primitive obj
        end local 0 // org.bouncycastle.asn1.ASN1OutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/bouncycastle/asn1/ASN1OutputStream;
            0    5     1   obj  Lorg/bouncycastle/asn1/ASN1Primitive;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      obj   

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.asn1.ASN1OutputStream this
         0: .line 152
            aload 0 /* this */
            getfield org.bouncycastle.asn1.ASN1OutputStream.os:Ljava/io/OutputStream;
            invokevirtual java.io.OutputStream.close:()V
         1: .line 153
            return
        end local 0 // org.bouncycastle.asn1.ASN1OutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/bouncycastle/asn1/ASN1OutputStream;
    Exceptions:
      throws java.io.IOException

  public void flush();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.asn1.ASN1OutputStream this
         0: .line 158
            aload 0 /* this */
            getfield org.bouncycastle.asn1.ASN1OutputStream.os:Ljava/io/OutputStream;
            invokevirtual java.io.OutputStream.flush:()V
         1: .line 159
            return
        end local 0 // org.bouncycastle.asn1.ASN1OutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/bouncycastle/asn1/ASN1OutputStream;
    Exceptions:
      throws java.io.IOException

  org.bouncycastle.asn1.ASN1OutputStream getDERSubStream();
    descriptor: ()Lorg/bouncycastle/asn1/ASN1OutputStream;
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.bouncycastle.asn1.ASN1OutputStream this
         0: .line 163
            new org.bouncycastle.asn1.DEROutputStream
            dup
            aload 0 /* this */
            getfield org.bouncycastle.asn1.ASN1OutputStream.os:Ljava/io/OutputStream;
            invokespecial org.bouncycastle.asn1.DEROutputStream.<init>:(Ljava/io/OutputStream;)V
            areturn
        end local 0 // org.bouncycastle.asn1.ASN1OutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/asn1/ASN1OutputStream;

  org.bouncycastle.asn1.ASN1OutputStream getDLSubStream();
    descriptor: ()Lorg/bouncycastle/asn1/ASN1OutputStream;
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.bouncycastle.asn1.ASN1OutputStream this
         0: .line 168
            new org.bouncycastle.asn1.DLOutputStream
            dup
            aload 0 /* this */
            getfield org.bouncycastle.asn1.ASN1OutputStream.os:Ljava/io/OutputStream;
            invokespecial org.bouncycastle.asn1.DLOutputStream.<init>:(Ljava/io/OutputStream;)V
            areturn
        end local 0 // org.bouncycastle.asn1.ASN1OutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/asn1/ASN1OutputStream;
}
SourceFile: "ASN1OutputStream.java"
NestMembers:
  org.bouncycastle.asn1.ASN1OutputStream$ImplicitOutputStream
InnerClasses:
  private ImplicitOutputStream = org.bouncycastle.asn1.ASN1OutputStream$ImplicitOutputStream of org.bouncycastle.asn1.ASN1OutputStream