class sun.security.ssl.HandshakeInStream extends java.io.InputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.security.ssl.HandshakeInStream
  super_class: java.io.InputStream
{
  sun.security.ssl.InputRecord r;
    descriptor: Lsun/security/ssl/InputRecord;
    flags: (0x0000) 

  void <init>(sun.security.ssl.HandshakeHash);
    descriptor: (Lsun/security/ssl/HandshakeHash;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.security.ssl.HandshakeInStream this
        start local 1 // sun.security.ssl.HandshakeHash handshakeHash
         0: .line 63
            aload 0 /* this */
            invokespecial java.io.InputStream.<init>:()V
         1: .line 64
            aload 0 /* this */
            new sun.security.ssl.InputRecord
            dup
            invokespecial sun.security.ssl.InputRecord.<init>:()V
            putfield sun.security.ssl.HandshakeInStream.r:Lsun/security/ssl/InputRecord;
         2: .line 65
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeInStream.r:Lsun/security/ssl/InputRecord;
            aload 1 /* handshakeHash */
            invokevirtual sun.security.ssl.InputRecord.setHandshakeHash:(Lsun/security/ssl/HandshakeHash;)V
         3: .line 66
            return
        end local 1 // sun.security.ssl.HandshakeHash handshakeHash
        end local 0 // sun.security.ssl.HandshakeInStream this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lsun/security/ssl/HandshakeInStream;
            0    4     1  handshakeHash  Lsun/security/ssl/HandshakeHash;
    MethodParameters:
               Name  Flags
      handshakeHash  

  public int available();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.HandshakeInStream this
         0: .line 78
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeInStream.r:Lsun/security/ssl/InputRecord;
            invokevirtual sun.security.ssl.InputRecord.available:()I
            ireturn
        end local 0 // sun.security.ssl.HandshakeInStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/HandshakeInStream;

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // sun.security.ssl.HandshakeInStream this
         0: .line 85
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeInStream.r:Lsun/security/ssl/InputRecord;
            invokevirtual sun.security.ssl.InputRecord.read:()I
            istore 1 /* n */
        start local 1 // int n
         1: .line 86
            iload 1 /* n */
            iconst_m1
            if_icmpne 3
         2: .line 87
            new javax.net.ssl.SSLException
            dup
            ldc "Unexpected end of handshake data"
            invokespecial javax.net.ssl.SSLException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 89
      StackMap locals: int
      StackMap stack:
            iload 1 /* n */
            ireturn
        end local 1 // int n
        end local 0 // sun.security.ssl.HandshakeInStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/security/ssl/HandshakeInStream;
            1    4     1     n  I
    Exceptions:
      throws java.io.IOException

  public int read(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // sun.security.ssl.HandshakeInStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 98
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeInStream.r:Lsun/security/ssl/InputRecord;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual sun.security.ssl.InputRecord.read:([BII)I
            istore 4 /* n */
        start local 4 // int n
         1: .line 99
            iload 4 /* n */
            iload 3 /* len */
            if_icmpeq 3
         2: .line 100
            new javax.net.ssl.SSLException
            dup
            ldc "Unexpected end of handshake data"
            invokespecial javax.net.ssl.SSLException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 102
      StackMap locals: int
      StackMap stack:
            iload 4 /* n */
            ireturn
        end local 4 // int n
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // sun.security.ssl.HandshakeInStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/security/ssl/HandshakeInStream;
            0    4     1     b  [B
            0    4     2   off  I
            0    4     3   len  I
            1    4     4     n  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.security.ssl.HandshakeInStream this
        start local 1 // long n
         0: .line 109
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeInStream.r:Lsun/security/ssl/InputRecord;
            lload 1 /* n */
            invokevirtual sun.security.ssl.InputRecord.skip:(J)J
            lreturn
        end local 1 // long n
        end local 0 // sun.security.ssl.HandshakeInStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/HandshakeInStream;
            0    1     1     n  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     

  public void mark(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.ssl.HandshakeInStream this
        start local 1 // int readlimit
         0: .line 121
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeInStream.r:Lsun/security/ssl/InputRecord;
            iload 1 /* readlimit */
            invokevirtual sun.security.ssl.InputRecord.mark:(I)V
         1: .line 122
            return
        end local 1 // int readlimit
        end local 0 // sun.security.ssl.HandshakeInStream this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lsun/security/ssl/HandshakeInStream;
            0    2     1  readlimit  I
    MethodParameters:
           Name  Flags
      readlimit  

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.HandshakeInStream this
         0: .line 125
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeInStream.r:Lsun/security/ssl/InputRecord;
            invokevirtual sun.security.ssl.InputRecord.reset:()V
         1: .line 126
            return
        end local 0 // sun.security.ssl.HandshakeInStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/ssl/HandshakeInStream;

  public boolean markSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.HandshakeInStream this
         0: .line 129
            iconst_1
            ireturn
        end local 0 // sun.security.ssl.HandshakeInStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/HandshakeInStream;

  void incomingRecord(sun.security.ssl.InputRecord);
    descriptor: (Lsun/security/ssl/InputRecord;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.ssl.HandshakeInStream this
        start local 1 // sun.security.ssl.InputRecord in
         0: .line 141
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeInStream.r:Lsun/security/ssl/InputRecord;
            aload 1 /* in */
            invokevirtual sun.security.ssl.InputRecord.queueHandshake:(Lsun/security/ssl/InputRecord;)V
         1: .line 142
            return
        end local 1 // sun.security.ssl.InputRecord in
        end local 0 // sun.security.ssl.HandshakeInStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/ssl/HandshakeInStream;
            0    2     1    in  Lsun/security/ssl/InputRecord;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

  void digestNow();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.HandshakeInStream this
         0: .line 151
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeInStream.r:Lsun/security/ssl/InputRecord;
            invokevirtual sun.security.ssl.InputRecord.doHashes:()V
         1: .line 152
            return
        end local 0 // sun.security.ssl.HandshakeInStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/ssl/HandshakeInStream;

  void ignore(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.ssl.HandshakeInStream this
        start local 1 // int n
         0: .line 159
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeInStream.r:Lsun/security/ssl/InputRecord;
            iload 1 /* n */
            invokevirtual sun.security.ssl.InputRecord.ignore:(I)V
         1: .line 160
            return
        end local 1 // int n
        end local 0 // sun.security.ssl.HandshakeInStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/ssl/HandshakeInStream;
            0    2     1     n  I
    MethodParameters:
      Name  Flags
      n     

  int getInt8();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.HandshakeInStream this
         0: .line 171
            aload 0 /* this */
            invokevirtual sun.security.ssl.HandshakeInStream.read:()I
            ireturn
        end local 0 // sun.security.ssl.HandshakeInStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/HandshakeInStream;
    Exceptions:
      throws java.io.IOException

  int getInt16();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.security.ssl.HandshakeInStream this
         0: .line 175
            aload 0 /* this */
            invokevirtual sun.security.ssl.HandshakeInStream.getInt8:()I
            bipush 8
            ishl
            aload 0 /* this */
            invokevirtual sun.security.ssl.HandshakeInStream.getInt8:()I
            ior
            ireturn
        end local 0 // sun.security.ssl.HandshakeInStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/HandshakeInStream;
    Exceptions:
      throws java.io.IOException

  int getInt24();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.security.ssl.HandshakeInStream this
         0: .line 179
            aload 0 /* this */
            invokevirtual sun.security.ssl.HandshakeInStream.getInt8:()I
            bipush 16
            ishl
            aload 0 /* this */
            invokevirtual sun.security.ssl.HandshakeInStream.getInt8:()I
            bipush 8
            ishl
            ior
            aload 0 /* this */
            invokevirtual sun.security.ssl.HandshakeInStream.getInt8:()I
            ior
            ireturn
        end local 0 // sun.security.ssl.HandshakeInStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/HandshakeInStream;
    Exceptions:
      throws java.io.IOException

  int getInt32();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.security.ssl.HandshakeInStream this
         0: .line 183
            aload 0 /* this */
            invokevirtual sun.security.ssl.HandshakeInStream.getInt8:()I
            bipush 24
            ishl
            aload 0 /* this */
            invokevirtual sun.security.ssl.HandshakeInStream.getInt8:()I
            bipush 16
            ishl
            ior
         1: .line 184
            aload 0 /* this */
            invokevirtual sun.security.ssl.HandshakeInStream.getInt8:()I
            bipush 8
            ishl
         2: .line 183
            ior
         3: .line 184
            aload 0 /* this */
            invokevirtual sun.security.ssl.HandshakeInStream.getInt8:()I
         4: .line 183
            ior
            ireturn
        end local 0 // sun.security.ssl.HandshakeInStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/ssl/HandshakeInStream;
    Exceptions:
      throws java.io.IOException

  byte[] getBytes8();
    descriptor: ()[B
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // sun.security.ssl.HandshakeInStream this
         0: .line 192
            aload 0 /* this */
            invokevirtual sun.security.ssl.HandshakeInStream.getInt8:()I
            istore 1 /* len */
        start local 1 // int len
         1: .line 193
            aload 0 /* this */
            iload 1 /* len */
            invokevirtual sun.security.ssl.HandshakeInStream.verifyLength:(I)V
         2: .line 194
            iload 1 /* len */
            newarray 8
            astore 2 /* b */
        start local 2 // byte[] b
         3: .line 196
            aload 0 /* this */
            aload 2 /* b */
            iconst_0
            iload 1 /* len */
            invokevirtual sun.security.ssl.HandshakeInStream.read:([BII)I
            pop
         4: .line 197
            aload 2 /* b */
            areturn
        end local 2 // byte[] b
        end local 1 // int len
        end local 0 // sun.security.ssl.HandshakeInStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/ssl/HandshakeInStream;
            1    5     1   len  I
            3    5     2     b  [B
    Exceptions:
      throws java.io.IOException

  byte[] getBytes16();
    descriptor: ()[B
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // sun.security.ssl.HandshakeInStream this
         0: .line 201
            aload 0 /* this */
            invokevirtual sun.security.ssl.HandshakeInStream.getInt16:()I
            istore 1 /* len */
        start local 1 // int len
         1: .line 202
            aload 0 /* this */
            iload 1 /* len */
            invokevirtual sun.security.ssl.HandshakeInStream.verifyLength:(I)V
         2: .line 203
            iload 1 /* len */
            newarray 8
            astore 2 /* b */
        start local 2 // byte[] b
         3: .line 205
            aload 0 /* this */
            aload 2 /* b */
            iconst_0
            iload 1 /* len */
            invokevirtual sun.security.ssl.HandshakeInStream.read:([BII)I
            pop
         4: .line 206
            aload 2 /* b */
            areturn
        end local 2 // byte[] b
        end local 1 // int len
        end local 0 // sun.security.ssl.HandshakeInStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/ssl/HandshakeInStream;
            1    5     1   len  I
            3    5     2     b  [B
    Exceptions:
      throws java.io.IOException

  byte[] getBytes24();
    descriptor: ()[B
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // sun.security.ssl.HandshakeInStream this
         0: .line 210
            aload 0 /* this */
            invokevirtual sun.security.ssl.HandshakeInStream.getInt24:()I
            istore 1 /* len */
        start local 1 // int len
         1: .line 211
            aload 0 /* this */
            iload 1 /* len */
            invokevirtual sun.security.ssl.HandshakeInStream.verifyLength:(I)V
         2: .line 212
            iload 1 /* len */
            newarray 8
            astore 2 /* b */
        start local 2 // byte[] b
         3: .line 214
            aload 0 /* this */
            aload 2 /* b */
            iconst_0
            iload 1 /* len */
            invokevirtual sun.security.ssl.HandshakeInStream.read:([BII)I
            pop
         4: .line 215
            aload 2 /* b */
            areturn
        end local 2 // byte[] b
        end local 1 // int len
        end local 0 // sun.security.ssl.HandshakeInStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/ssl/HandshakeInStream;
            1    5     1   len  I
            3    5     2     b  [B
    Exceptions:
      throws java.io.IOException

  private void verifyLength(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.security.ssl.HandshakeInStream this
        start local 1 // int len
         0: .line 220
            iload 1 /* len */
            aload 0 /* this */
            invokevirtual sun.security.ssl.HandshakeInStream.available:()I
            if_icmple 4
         1: .line 221
            new javax.net.ssl.SSLException
            dup
         2: .line 222
            ldc "Not enough data to fill declared vector size"
         3: .line 221
            invokespecial javax.net.ssl.SSLException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 224
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int len
        end local 0 // sun.security.ssl.HandshakeInStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/ssl/HandshakeInStream;
            0    5     1   len  I
    Exceptions:
      throws javax.net.ssl.SSLException
    MethodParameters:
      Name  Flags
      len   
}
SourceFile: "HandshakeInStream.java"