interface sun.security.ssl.Record
  minor version: 0
  major version: 59
  flags: flags: (0x0600) ACC_INTERFACE, ACC_ABSTRACT
  this_class: sun.security.ssl.Record
  super_class: java.lang.Object
{
  public static final int maxMacSize;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 48

  public static final int maxDataSize;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 16384

  public static final int maxPadding;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 256

  public static final int maxIVLength;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 16

  public static final int maxFragmentSize;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 18432

  public static final boolean enableCBCProtection;
    descriptor: Z
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final int OVERFLOW_OF_INT08;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 256

  public static final int OVERFLOW_OF_INT16;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 65536

  public static final int OVERFLOW_OF_INT24;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 16777216

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 54
            ldc "jsse.enableCBCProtection"
            iconst_1
            invokestatic sun.security.ssl.Utilities.getBooleanProperty:(Ljava/lang/String;Z)Z
         1: .line 53
            putstatic sun.security.ssl.Record.enableCBCProtection:Z
         2: .line 61
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static int getInt8(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.ByteBuffer m
         0: .line 68
            aload 0 /* m */
            iconst_1
            invokestatic sun.security.ssl.Record.verifyLength:(Ljava/nio/ByteBuffer;I)V
         1: .line 69
            aload 0 /* m */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            ireturn
        end local 0 // java.nio.ByteBuffer m
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     m  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      m     

  public static int getInt16(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.nio.ByteBuffer m
         0: .line 73
            aload 0 /* m */
            iconst_2
            invokestatic sun.security.ssl.Record.verifyLength:(Ljava/nio/ByteBuffer;I)V
         1: .line 74
            aload 0 /* m */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            bipush 8
            ishl
         2: .line 75
            aload 0 /* m */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
         3: .line 74
            ior
            ireturn
        end local 0 // java.nio.ByteBuffer m
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0     m  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      m     

  public static int getInt24(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.nio.ByteBuffer m
         0: .line 79
            aload 0 /* m */
            iconst_3
            invokestatic sun.security.ssl.Record.verifyLength:(Ljava/nio/ByteBuffer;I)V
         1: .line 80
            aload 0 /* m */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            bipush 16
            ishl
         2: .line 81
            aload 0 /* m */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            bipush 8
            ishl
         3: .line 80
            ior
         4: .line 82
            aload 0 /* m */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
         5: .line 80
            ior
            ireturn
        end local 0 // java.nio.ByteBuffer m
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0     m  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      m     

  public static int getInt32(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.nio.ByteBuffer m
         0: .line 86
            aload 0 /* m */
            iconst_4
            invokestatic sun.security.ssl.Record.verifyLength:(Ljava/nio/ByteBuffer;I)V
         1: .line 87
            aload 0 /* m */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            bipush 24
            ishl
         2: .line 88
            aload 0 /* m */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            bipush 16
            ishl
         3: .line 87
            ior
         4: .line 89
            aload 0 /* m */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            bipush 8
            ishl
         5: .line 87
            ior
         6: .line 90
            aload 0 /* m */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
         7: .line 87
            ior
            ireturn
        end local 0 // java.nio.ByteBuffer m
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0     m  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      m     

  public static byte[] getBytes8(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)[B
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // java.nio.ByteBuffer m
         0: .line 97
            aload 0 /* m */
            invokestatic sun.security.ssl.Record.getInt8:(Ljava/nio/ByteBuffer;)I
            istore 1 /* len */
        start local 1 // int len
         1: .line 98
            aload 0 /* m */
            iload 1 /* len */
            invokestatic sun.security.ssl.Record.verifyLength:(Ljava/nio/ByteBuffer;I)V
         2: .line 99
            iload 1 /* len */
            newarray 8
            astore 2 /* b */
        start local 2 // byte[] b
         3: .line 101
            aload 0 /* m */
            aload 2 /* b */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
         4: .line 102
            aload 2 /* b */
            areturn
        end local 2 // byte[] b
        end local 1 // int len
        end local 0 // java.nio.ByteBuffer m
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0     m  Ljava/nio/ByteBuffer;
            1    5     1   len  I
            3    5     2     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      m     

  public static byte[] getBytes16(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)[B
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // java.nio.ByteBuffer m
         0: .line 106
            aload 0 /* m */
            invokestatic sun.security.ssl.Record.getInt16:(Ljava/nio/ByteBuffer;)I
            istore 1 /* len */
        start local 1 // int len
         1: .line 107
            aload 0 /* m */
            iload 1 /* len */
            invokestatic sun.security.ssl.Record.verifyLength:(Ljava/nio/ByteBuffer;I)V
         2: .line 108
            iload 1 /* len */
            newarray 8
            astore 2 /* b */
        start local 2 // byte[] b
         3: .line 110
            aload 0 /* m */
            aload 2 /* b */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
         4: .line 111
            aload 2 /* b */
            areturn
        end local 2 // byte[] b
        end local 1 // int len
        end local 0 // java.nio.ByteBuffer m
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0     m  Ljava/nio/ByteBuffer;
            1    5     1   len  I
            3    5     2     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      m     

  public static byte[] getBytes24(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)[B
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // java.nio.ByteBuffer m
         0: .line 115
            aload 0 /* m */
            invokestatic sun.security.ssl.Record.getInt24:(Ljava/nio/ByteBuffer;)I
            istore 1 /* len */
        start local 1 // int len
         1: .line 116
            aload 0 /* m */
            iload 1 /* len */
            invokestatic sun.security.ssl.Record.verifyLength:(Ljava/nio/ByteBuffer;I)V
         2: .line 117
            iload 1 /* len */
            newarray 8
            astore 2 /* b */
        start local 2 // byte[] b
         3: .line 119
            aload 0 /* m */
            aload 2 /* b */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
         4: .line 120
            aload 2 /* b */
            areturn
        end local 2 // byte[] b
        end local 1 // int len
        end local 0 // java.nio.ByteBuffer m
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0     m  Ljava/nio/ByteBuffer;
            1    5     1   len  I
            3    5     2     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      m     

  public static void putInt8(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.nio.ByteBuffer m
        start local 1 // int i
         0: .line 128
            aload 0 /* m */
            iconst_1
            invokestatic sun.security.ssl.Record.verifyLength:(Ljava/nio/ByteBuffer;I)V
         1: .line 129
            aload 0 /* m */
            iload 1 /* i */
            sipush 255
            iand
            i2b
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
         2: .line 130
            return
        end local 1 // int i
        end local 0 // java.nio.ByteBuffer m
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0     m  Ljava/nio/ByteBuffer;
            0    3     1     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      m     
      i     

  public static void putInt16(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.nio.ByteBuffer m
        start local 1 // int i
         0: .line 133
            aload 0 /* m */
            iconst_2
            invokestatic sun.security.ssl.Record.verifyLength:(Ljava/nio/ByteBuffer;I)V
         1: .line 134
            aload 0 /* m */
            iload 1 /* i */
            bipush 8
            ishr
            sipush 255
            iand
            i2b
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
         2: .line 135
            aload 0 /* m */
            iload 1 /* i */
            sipush 255
            iand
            i2b
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
         3: .line 136
            return
        end local 1 // int i
        end local 0 // java.nio.ByteBuffer m
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0     m  Ljava/nio/ByteBuffer;
            0    4     1     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      m     
      i     

  public static void putInt24(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.nio.ByteBuffer m
        start local 1 // int i
         0: .line 139
            aload 0 /* m */
            iconst_3
            invokestatic sun.security.ssl.Record.verifyLength:(Ljava/nio/ByteBuffer;I)V
         1: .line 140
            aload 0 /* m */
            iload 1 /* i */
            bipush 16
            ishr
            sipush 255
            iand
            i2b
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
         2: .line 141
            aload 0 /* m */
            iload 1 /* i */
            bipush 8
            ishr
            sipush 255
            iand
            i2b
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
         3: .line 142
            aload 0 /* m */
            iload 1 /* i */
            sipush 255
            iand
            i2b
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
         4: .line 143
            return
        end local 1 // int i
        end local 0 // java.nio.ByteBuffer m
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0     m  Ljava/nio/ByteBuffer;
            0    5     1     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      m     
      i     

  public static void putInt32(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.nio.ByteBuffer m
        start local 1 // int i
         0: .line 146
            aload 0 /* m */
            iload 1 /* i */
            bipush 24
            ishr
            sipush 255
            iand
            i2b
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
         1: .line 147
            aload 0 /* m */
            iload 1 /* i */
            bipush 16
            ishr
            sipush 255
            iand
            i2b
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
         2: .line 148
            aload 0 /* m */
            iload 1 /* i */
            bipush 8
            ishr
            sipush 255
            iand
            i2b
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
         3: .line 149
            aload 0 /* m */
            iload 1 /* i */
            sipush 255
            iand
            i2b
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
         4: .line 150
            return
        end local 1 // int i
        end local 0 // java.nio.ByteBuffer m
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0     m  Ljava/nio/ByteBuffer;
            0    5     1     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      m     
      i     

  public static void putBytes8(java.nio.ByteBuffer, byte[]);
    descriptor: (Ljava/nio/ByteBuffer;[B)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.nio.ByteBuffer m
        start local 1 // byte[] s
         0: .line 156
            aload 1 /* s */
            ifnull 1
            aload 1 /* s */
            arraylength
            ifne 4
         1: .line 157
      StackMap locals:
      StackMap stack:
            aload 0 /* m */
            iconst_1
            invokestatic sun.security.ssl.Record.verifyLength:(Ljava/nio/ByteBuffer;I)V
         2: .line 158
            aload 0 /* m */
            iconst_0
            invokestatic sun.security.ssl.Record.putInt8:(Ljava/nio/ByteBuffer;I)V
         3: .line 159
            goto 7
         4: .line 160
      StackMap locals:
      StackMap stack:
            aload 0 /* m */
            iconst_1
            aload 1 /* s */
            arraylength
            iadd
            invokestatic sun.security.ssl.Record.verifyLength:(Ljava/nio/ByteBuffer;I)V
         5: .line 161
            aload 0 /* m */
            aload 1 /* s */
            arraylength
            invokestatic sun.security.ssl.Record.putInt8:(Ljava/nio/ByteBuffer;I)V
         6: .line 162
            aload 0 /* m */
            aload 1 /* s */
            invokevirtual java.nio.ByteBuffer.put:([B)Ljava/nio/ByteBuffer;
            pop
         7: .line 164
      StackMap locals:
      StackMap stack:
            return
        end local 1 // byte[] s
        end local 0 // java.nio.ByteBuffer m
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0     m  Ljava/nio/ByteBuffer;
            0    8     1     s  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      m     
      s     

  public static void putBytes16(java.nio.ByteBuffer, byte[]);
    descriptor: (Ljava/nio/ByteBuffer;[B)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.nio.ByteBuffer m
        start local 1 // byte[] s
         0: .line 167
            aload 1 /* s */
            ifnull 1
            aload 1 /* s */
            arraylength
            ifne 4
         1: .line 168
      StackMap locals:
      StackMap stack:
            aload 0 /* m */
            iconst_2
            invokestatic sun.security.ssl.Record.verifyLength:(Ljava/nio/ByteBuffer;I)V
         2: .line 169
            aload 0 /* m */
            iconst_0
            invokestatic sun.security.ssl.Record.putInt16:(Ljava/nio/ByteBuffer;I)V
         3: .line 170
            goto 7
         4: .line 171
      StackMap locals:
      StackMap stack:
            aload 0 /* m */
            iconst_2
            aload 1 /* s */
            arraylength
            iadd
            invokestatic sun.security.ssl.Record.verifyLength:(Ljava/nio/ByteBuffer;I)V
         5: .line 172
            aload 0 /* m */
            aload 1 /* s */
            arraylength
            invokestatic sun.security.ssl.Record.putInt16:(Ljava/nio/ByteBuffer;I)V
         6: .line 173
            aload 0 /* m */
            aload 1 /* s */
            invokevirtual java.nio.ByteBuffer.put:([B)Ljava/nio/ByteBuffer;
            pop
         7: .line 175
      StackMap locals:
      StackMap stack:
            return
        end local 1 // byte[] s
        end local 0 // java.nio.ByteBuffer m
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0     m  Ljava/nio/ByteBuffer;
            0    8     1     s  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      m     
      s     

  public static void putBytes24(java.nio.ByteBuffer, byte[]);
    descriptor: (Ljava/nio/ByteBuffer;[B)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.nio.ByteBuffer m
        start local 1 // byte[] s
         0: .line 178
            aload 1 /* s */
            ifnull 1
            aload 1 /* s */
            arraylength
            ifne 4
         1: .line 179
      StackMap locals:
      StackMap stack:
            aload 0 /* m */
            iconst_3
            invokestatic sun.security.ssl.Record.verifyLength:(Ljava/nio/ByteBuffer;I)V
         2: .line 180
            aload 0 /* m */
            iconst_0
            invokestatic sun.security.ssl.Record.putInt24:(Ljava/nio/ByteBuffer;I)V
         3: .line 181
            goto 7
         4: .line 182
      StackMap locals:
      StackMap stack:
            aload 0 /* m */
            iconst_3
            aload 1 /* s */
            arraylength
            iadd
            invokestatic sun.security.ssl.Record.verifyLength:(Ljava/nio/ByteBuffer;I)V
         5: .line 183
            aload 0 /* m */
            aload 1 /* s */
            arraylength
            invokestatic sun.security.ssl.Record.putInt24:(Ljava/nio/ByteBuffer;I)V
         6: .line 184
            aload 0 /* m */
            aload 1 /* s */
            invokevirtual java.nio.ByteBuffer.put:([B)Ljava/nio/ByteBuffer;
            pop
         7: .line 186
      StackMap locals:
      StackMap stack:
            return
        end local 1 // byte[] s
        end local 0 // java.nio.ByteBuffer m
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0     m  Ljava/nio/ByteBuffer;
            0    8     1     s  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      m     
      s     

  public static void verifyLength(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.nio.ByteBuffer m
        start local 1 // int len
         0: .line 191
            iload 1 /* len */
            aload 0 /* m */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            if_icmple 2
         1: .line 192
            new javax.net.ssl.SSLException
            dup
            ldc "Insufficient space in the buffer, may be cause by an unexpected end of handshake data."
            invokespecial javax.net.ssl.SSLException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 195
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int len
        end local 0 // java.nio.ByteBuffer m
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0     m  Ljava/nio/ByteBuffer;
            0    3     1   len  I
    Exceptions:
      throws javax.net.ssl.SSLException
    MethodParameters:
      Name  Flags
      m     
      len   
}
SourceFile: "Record.java"