public class com.jcraft.jsch.Packet
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.jcraft.jsch.Packet
  super_class: java.lang.Object
{
  private static com.jcraft.jsch.Random random;
    descriptor: Lcom/jcraft/jsch/Random;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  com.jcraft.jsch.Buffer buffer;
    descriptor: Lcom/jcraft/jsch/Buffer;
    flags: (0x0000) 

  byte[] ba4;
    descriptor: [B
    flags: (0x0000) 

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 34
            aconst_null
            putstatic com.jcraft.jsch.Packet.random:Lcom/jcraft/jsch/Random;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  static void setRandom(com.jcraft.jsch.Random);
    descriptor: (Lcom/jcraft/jsch/Random;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.jcraft.jsch.Random foo
         0: .line 35
            aload 0 /* foo */
            putstatic com.jcraft.jsch.Packet.random:Lcom/jcraft/jsch/Random;
            return
        end local 0 // com.jcraft.jsch.Random foo
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   foo  Lcom/jcraft/jsch/Random;
    MethodParameters:
      Name  Flags
      foo   

  public void <init>(com.jcraft.jsch.Buffer);
    descriptor: (Lcom/jcraft/jsch/Buffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.jcraft.jsch.Packet this
        start local 1 // com.jcraft.jsch.Buffer buffer
         0: .line 39
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 38
            aload 0 /* this */
            iconst_4
            newarray 8
            putfield com.jcraft.jsch.Packet.ba4:[B
         2: .line 40
            aload 0 /* this */
            aload 1 /* buffer */
            putfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
         3: .line 41
            return
        end local 1 // com.jcraft.jsch.Buffer buffer
        end local 0 // com.jcraft.jsch.Packet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/jcraft/jsch/Packet;
            0    4     1  buffer  Lcom/jcraft/jsch/Buffer;
    MethodParameters:
        Name  Flags
      buffer  

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.jcraft.jsch.Packet this
         0: .line 43
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            iconst_5
            putfield com.jcraft.jsch.Buffer.index:I
         1: .line 44
            return
        end local 0 // com.jcraft.jsch.Packet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/jcraft/jsch/Packet;

  void padding(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // com.jcraft.jsch.Packet this
        start local 1 // int bsize
         0: .line 46
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            getfield com.jcraft.jsch.Buffer.index:I
            istore 2 /* len */
        start local 2 // int len
         1: .line 47
            iload 2 /* len */
            ineg
            iload 1 /* bsize */
            iconst_1
            isub
            iand
            istore 3 /* pad */
        start local 3 // int pad
         2: .line 48
            iload 3 /* pad */
            iload 1 /* bsize */
            if_icmpge 4
         3: .line 49
            iload 3 /* pad */
            iload 1 /* bsize */
            iadd
            istore 3 /* pad */
         4: .line 51
      StackMap locals: int int
      StackMap stack:
            iload 2 /* len */
            iload 3 /* pad */
            iadd
            iconst_4
            isub
            istore 2 /* len */
         5: .line 52
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.ba4:[B
            iconst_0
            iload 2 /* len */
            bipush 24
            iushr
            i2b
            bastore
         6: .line 53
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.ba4:[B
            iconst_1
            iload 2 /* len */
            bipush 16
            iushr
            i2b
            bastore
         7: .line 54
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.ba4:[B
            iconst_2
            iload 2 /* len */
            bipush 8
            iushr
            i2b
            bastore
         8: .line 55
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.ba4:[B
            iconst_3
            iload 2 /* len */
            i2b
            bastore
         9: .line 56
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.ba4:[B
            iconst_0
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            getfield com.jcraft.jsch.Buffer.buffer:[B
            iconst_0
            iconst_4
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 57
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            getfield com.jcraft.jsch.Buffer.buffer:[B
            iconst_4
            iload 3 /* pad */
            i2b
            bastore
        11: .line 58
            getstatic com.jcraft.jsch.Packet.random:Lcom/jcraft/jsch/Random;
            dup
            astore 4
            monitorenter
        12: .line 59
            getstatic com.jcraft.jsch.Packet.random:Lcom/jcraft/jsch/Random;
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            getfield com.jcraft.jsch.Buffer.buffer:[B
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            getfield com.jcraft.jsch.Buffer.index:I
            iload 3 /* pad */
            invokeinterface com.jcraft.jsch.Random.fill:([BII)V
        13: .line 58
            aload 4
            monitorexit
        14: goto 17
      StackMap locals: com.jcraft.jsch.Packet int int int com.jcraft.jsch.Random
      StackMap stack: java.lang.Throwable
        15: aload 4
            monitorexit
        16: athrow
        17: .line 61
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            iload 3 /* pad */
            invokevirtual com.jcraft.jsch.Buffer.skip:(I)V
        18: .line 69
            return
        end local 3 // int pad
        end local 2 // int len
        end local 1 // int bsize
        end local 0 // com.jcraft.jsch.Packet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   19     0   this  Lcom/jcraft/jsch/Packet;
            0   19     1  bsize  I
            1   19     2    len  I
            2   19     3    pad  I
      Exception table:
        from    to  target  type
          12    14      15  any
          15    16      15  any
    MethodParameters:
       Name  Flags
      bsize  

  int shift(int, int, int);
    descriptor: (III)I
    flags: (0x0000) 
    Code:
      stack=6, locals=7, args_size=4
        start local 0 // com.jcraft.jsch.Packet this
        start local 1 // int len
        start local 2 // int bsize
        start local 3 // int mac
         0: .line 72
            iload 1 /* len */
            iconst_5
            iadd
            bipush 9
            iadd
            istore 4 /* s */
        start local 4 // int s
         1: .line 73
            iload 4 /* s */
            ineg
            iload 2 /* bsize */
            iconst_1
            isub
            iand
            istore 5 /* pad */
        start local 5 // int pad
         2: .line 74
            iload 5 /* pad */
            iload 2 /* bsize */
            if_icmpge 3
            iload 5 /* pad */
            iload 2 /* bsize */
            iadd
            istore 5 /* pad */
         3: .line 75
      StackMap locals: int int
      StackMap stack:
            iload 4 /* s */
            iload 5 /* pad */
            iadd
            istore 4 /* s */
         4: .line 76
            iload 4 /* s */
            iload 3 /* mac */
            iadd
            istore 4 /* s */
         5: .line 77
            iinc 4 /* s */ 32
         6: .line 80
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            getfield com.jcraft.jsch.Buffer.buffer:[B
            arraylength
            iload 4 /* s */
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            getfield com.jcraft.jsch.Buffer.index:I
            iadd
            iconst_5
            isub
            bipush 9
            isub
            iload 1 /* len */
            isub
            if_icmpge 10
         7: .line 81
            iload 4 /* s */
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            getfield com.jcraft.jsch.Buffer.index:I
            iadd
            iconst_5
            isub
            bipush 9
            isub
            iload 1 /* len */
            isub
            newarray 8
            astore 6 /* foo */
        start local 6 // byte[] foo
         8: .line 82
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            getfield com.jcraft.jsch.Buffer.buffer:[B
            iconst_0
            aload 6 /* foo */
            iconst_0
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            getfield com.jcraft.jsch.Buffer.buffer:[B
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 83
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            aload 6 /* foo */
            putfield com.jcraft.jsch.Buffer.buffer:[B
        end local 6 // byte[] foo
        10: .line 93
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            getfield com.jcraft.jsch.Buffer.buffer:[B
        11: .line 94
            iload 1 /* len */
            iconst_5
            iadd
            bipush 9
            iadd
        12: .line 95
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            getfield com.jcraft.jsch.Buffer.buffer:[B
            iload 4 /* s */
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            getfield com.jcraft.jsch.Buffer.index:I
            iconst_5
            isub
            bipush 9
            isub
            iload 1 /* len */
            isub
        13: .line 93
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        14: .line 97
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            bipush 10
            putfield com.jcraft.jsch.Buffer.index:I
        15: .line 98
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            iload 1 /* len */
            invokevirtual com.jcraft.jsch.Buffer.putInt:(I)V
        16: .line 99
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            iload 1 /* len */
            iconst_5
            iadd
            bipush 9
            iadd
            putfield com.jcraft.jsch.Buffer.index:I
        17: .line 100
            iload 4 /* s */
            ireturn
        end local 5 // int pad
        end local 4 // int s
        end local 3 // int mac
        end local 2 // int bsize
        end local 1 // int len
        end local 0 // com.jcraft.jsch.Packet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   18     0   this  Lcom/jcraft/jsch/Packet;
            0   18     1    len  I
            0   18     2  bsize  I
            0   18     3    mac  I
            1   18     4      s  I
            2   18     5    pad  I
            8   10     6    foo  [B
    MethodParameters:
       Name  Flags
      len    
      bsize  
      mac    

  void unshift(byte, int, int, int);
    descriptor: (BIII)V
    flags: (0x0000) 
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // com.jcraft.jsch.Packet this
        start local 1 // byte command
        start local 2 // int recipient
        start local 3 // int s
        start local 4 // int len
         0: .line 103
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            getfield com.jcraft.jsch.Buffer.buffer:[B
         1: .line 104
            iload 3 /* s */
         2: .line 105
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            getfield com.jcraft.jsch.Buffer.buffer:[B
            bipush 14
            iload 4 /* len */
         3: .line 103
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 106
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            getfield com.jcraft.jsch.Buffer.buffer:[B
            iconst_5
            iload 1 /* command */
            bastore
         5: .line 107
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            bipush 6
            putfield com.jcraft.jsch.Buffer.index:I
         6: .line 108
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            iload 2 /* recipient */
            invokevirtual com.jcraft.jsch.Buffer.putInt:(I)V
         7: .line 109
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            iload 4 /* len */
            invokevirtual com.jcraft.jsch.Buffer.putInt:(I)V
         8: .line 110
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            iload 4 /* len */
            iconst_5
            iadd
            bipush 9
            iadd
            putfield com.jcraft.jsch.Buffer.index:I
         9: .line 111
            return
        end local 4 // int len
        end local 3 // int s
        end local 2 // int recipient
        end local 1 // byte command
        end local 0 // com.jcraft.jsch.Packet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lcom/jcraft/jsch/Packet;
            0   10     1    command  B
            0   10     2  recipient  I
            0   10     3          s  I
            0   10     4        len  I
    MethodParameters:
           Name  Flags
      command    
      recipient  
      s          
      len        

  com.jcraft.jsch.Buffer getBuffer();
    descriptor: ()Lcom/jcraft/jsch/Buffer;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.jcraft.jsch.Packet this
         0: .line 113
            aload 0 /* this */
            getfield com.jcraft.jsch.Packet.buffer:Lcom/jcraft/jsch/Buffer;
            areturn
        end local 0 // com.jcraft.jsch.Packet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/Packet;
}
SourceFile: "Packet.java"