final class sun.security.ssl.HandshakeHash
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.security.ssl.HandshakeHash
  super_class: java.lang.Object
{
  private int version;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private java.io.ByteArrayOutputStream data;
    descriptor: Ljava/io/ByteArrayOutputStream;
    flags: (0x0002) ACC_PRIVATE

  private java.security.MessageDigest md5;
    descriptor: Ljava/security/MessageDigest;
    flags: (0x0002) ACC_PRIVATE

  private java.security.MessageDigest sha;
    descriptor: Ljava/security/MessageDigest;
    flags: (0x0002) ACC_PRIVATE

  private final int clonesNeeded;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.security.MessageDigest finMD;
    descriptor: Ljava/security/MessageDigest;
    flags: (0x0002) ACC_PRIVATE

  private java.io.ByteArrayOutputStream reserve;
    descriptor: Ljava/io/ByteArrayOutputStream;
    flags: (0x0002) ACC_PRIVATE

  void <init>(boolean);
    descriptor: (Z)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.security.ssl.HandshakeHash this
        start local 1 // boolean needCertificateVerify
         0: .line 110
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 93
            aload 0 /* this */
            iconst_m1
            putfield sun.security.ssl.HandshakeHash.version:I
         2: .line 94
            aload 0 /* this */
            new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
            putfield sun.security.ssl.HandshakeHash.data:Ljava/io/ByteArrayOutputStream;
         3: .line 104
            aload 0 /* this */
            new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
            putfield sun.security.ssl.HandshakeHash.reserve:Ljava/io/ByteArrayOutputStream;
         4: .line 133
            aload 0 /* this */
            iload 1 /* needCertificateVerify */
            ifeq 5
            iconst_5
            goto 6
      StackMap locals: sun.security.ssl.HandshakeHash int
      StackMap stack: sun.security.ssl.HandshakeHash
         5: iconst_4
      StackMap locals: sun.security.ssl.HandshakeHash int
      StackMap stack: sun.security.ssl.HandshakeHash int
         6: putfield sun.security.ssl.HandshakeHash.clonesNeeded:I
         7: .line 134
            return
        end local 1 // boolean needCertificateVerify
        end local 0 // sun.security.ssl.HandshakeHash this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    8     0                   this  Lsun/security/ssl/HandshakeHash;
            0    8     1  needCertificateVerify  Z
    MethodParameters:
                       Name  Flags
      needCertificateVerify  

  void reserve(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // sun.security.ssl.HandshakeHash this
        start local 1 // java.nio.ByteBuffer input
         0: .line 137
            aload 1 /* input */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifeq 5
         1: .line 138
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.reserve:Ljava/io/ByteArrayOutputStream;
            aload 1 /* input */
            invokevirtual java.nio.ByteBuffer.array:()[B
         2: .line 139
            aload 1 /* input */
            invokevirtual java.nio.ByteBuffer.position:()I
            aload 1 /* input */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            iadd
            aload 1 /* input */
            invokevirtual java.nio.ByteBuffer.remaining:()I
         3: .line 138
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
         4: .line 140
            goto 10
         5: .line 141
      StackMap locals:
      StackMap stack:
            aload 1 /* input */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 2 /* inPos */
        start local 2 // int inPos
         6: .line 142
            aload 1 /* input */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            newarray 8
            astore 3 /* holder */
        start local 3 // byte[] holder
         7: .line 143
            aload 1 /* input */
            aload 3 /* holder */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
         8: .line 144
            aload 1 /* input */
            iload 2 /* inPos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
         9: .line 145
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.reserve:Ljava/io/ByteArrayOutputStream;
            aload 3 /* holder */
            iconst_0
            aload 3 /* holder */
            arraylength
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
        end local 3 // byte[] holder
        end local 2 // int inPos
        10: .line 147
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.nio.ByteBuffer input
        end local 0 // sun.security.ssl.HandshakeHash this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lsun/security/ssl/HandshakeHash;
            0   11     1   input  Ljava/nio/ByteBuffer;
            6   10     2   inPos  I
            7   10     3  holder  [B
    MethodParameters:
       Name  Flags
      input  

  void reserve(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0000) 
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // sun.security.ssl.HandshakeHash this
        start local 1 // byte[] b
        start local 2 // int offset
        start local 3 // int len
         0: .line 150
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.reserve:Ljava/io/ByteArrayOutputStream;
            aload 1 /* b */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
         1: .line 151
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] b
        end local 0 // sun.security.ssl.HandshakeHash this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lsun/security/ssl/HandshakeHash;
            0    2     1       b  [B
            0    2     2  offset  I
            0    2     3     len  I
    MethodParameters:
        Name  Flags
      b       
      offset  
      len     

  void reload();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // sun.security.ssl.HandshakeHash this
         0: .line 154
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.reserve:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.size:()I
            ifeq 4
         1: .line 155
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.reserve:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            astore 1 /* bytes */
        start local 1 // byte[] bytes
         2: .line 156
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.reserve:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.reset:()V
         3: .line 157
            aload 0 /* this */
            aload 1 /* bytes */
            iconst_0
            aload 1 /* bytes */
            arraylength
            invokevirtual sun.security.ssl.HandshakeHash.update:([BII)V
        end local 1 // byte[] bytes
         4: .line 159
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.security.ssl.HandshakeHash this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lsun/security/ssl/HandshakeHash;
            2    4     1  bytes  [B

  void update(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // sun.security.ssl.HandshakeHash this
        start local 1 // java.nio.ByteBuffer input
         0: .line 164
            aload 0 /* this */
            invokevirtual sun.security.ssl.HandshakeHash.reload:()V
         1: .line 166
            aload 1 /* input */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 2 /* inPos */
        start local 2 // int inPos
         2: .line 167
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.version:I
            tableswitch { // 1 - 1
                    1: 3
              default: 8
          }
         3: .line 169
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.md5:Ljava/security/MessageDigest;
            aload 1 /* input */
            invokevirtual java.security.MessageDigest.update:(Ljava/nio/ByteBuffer;)V
         4: .line 170
            aload 1 /* input */
            iload 2 /* inPos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
         5: .line 172
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.sha:Ljava/security/MessageDigest;
            aload 1 /* input */
            invokevirtual java.security.MessageDigest.update:(Ljava/nio/ByteBuffer;)V
         6: .line 173
            aload 1 /* input */
            iload 2 /* inPos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
         7: .line 175
            goto 20
         8: .line 177
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.finMD:Ljava/security/MessageDigest;
            ifnull 11
         9: .line 178
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.finMD:Ljava/security/MessageDigest;
            aload 1 /* input */
            invokevirtual java.security.MessageDigest.update:(Ljava/nio/ByteBuffer;)V
        10: .line 179
            aload 1 /* input */
            iload 2 /* inPos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        11: .line 181
      StackMap locals:
      StackMap stack:
            aload 1 /* input */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifeq 16
        12: .line 182
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.data:Ljava/io/ByteArrayOutputStream;
            aload 1 /* input */
            invokevirtual java.nio.ByteBuffer.array:()[B
        13: .line 183
            iload 2 /* inPos */
            aload 1 /* input */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            iadd
            aload 1 /* input */
            invokevirtual java.nio.ByteBuffer.remaining:()I
        14: .line 182
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
        15: .line 184
            goto 20
        16: .line 185
      StackMap locals:
      StackMap stack:
            aload 1 /* input */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            newarray 8
            astore 3 /* holder */
        start local 3 // byte[] holder
        17: .line 186
            aload 1 /* input */
            aload 3 /* holder */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
        18: .line 187
            aload 1 /* input */
            iload 2 /* inPos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        19: .line 188
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.data:Ljava/io/ByteArrayOutputStream;
            aload 3 /* holder */
            iconst_0
            aload 3 /* holder */
            arraylength
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
        end local 3 // byte[] holder
        20: .line 192
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int inPos
        end local 1 // java.nio.ByteBuffer input
        end local 0 // sun.security.ssl.HandshakeHash this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   21     0    this  Lsun/security/ssl/HandshakeHash;
            0   21     1   input  Ljava/nio/ByteBuffer;
            2   21     2   inPos  I
           17   20     3  holder  [B
    MethodParameters:
       Name  Flags
      input  

  void update(byte, byte[]);
    descriptor: (B[B)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // sun.security.ssl.HandshakeHash this
        start local 1 // byte handshakeType
        start local 2 // byte[] handshakeBody
         0: .line 197
            aload 0 /* this */
            invokevirtual sun.security.ssl.HandshakeHash.reload:()V
         1: .line 199
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.version:I
            tableswitch { // 1 - 1
                    1: 2
              default: 13
          }
         2: .line 201
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.md5:Ljava/security/MessageDigest;
            iload 1 /* handshakeType */
            invokevirtual java.security.MessageDigest.update:(B)V
         3: .line 202
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.sha:Ljava/security/MessageDigest;
            iload 1 /* handshakeType */
            invokevirtual java.security.MessageDigest.update:(B)V
         4: .line 204
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.md5:Ljava/security/MessageDigest;
            aload 2 /* handshakeBody */
            arraylength
            bipush 16
            ishr
            sipush 255
            iand
            i2b
            invokevirtual java.security.MessageDigest.update:(B)V
         5: .line 205
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.sha:Ljava/security/MessageDigest;
            aload 2 /* handshakeBody */
            arraylength
            bipush 16
            ishr
            sipush 255
            iand
            i2b
            invokevirtual java.security.MessageDigest.update:(B)V
         6: .line 206
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.md5:Ljava/security/MessageDigest;
            aload 2 /* handshakeBody */
            arraylength
            bipush 8
            ishr
            sipush 255
            iand
            i2b
            invokevirtual java.security.MessageDigest.update:(B)V
         7: .line 207
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.sha:Ljava/security/MessageDigest;
            aload 2 /* handshakeBody */
            arraylength
            bipush 8
            ishr
            sipush 255
            iand
            i2b
            invokevirtual java.security.MessageDigest.update:(B)V
         8: .line 208
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.md5:Ljava/security/MessageDigest;
            aload 2 /* handshakeBody */
            arraylength
            sipush 255
            iand
            i2b
            invokevirtual java.security.MessageDigest.update:(B)V
         9: .line 209
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.sha:Ljava/security/MessageDigest;
            aload 2 /* handshakeBody */
            arraylength
            sipush 255
            iand
            i2b
            invokevirtual java.security.MessageDigest.update:(B)V
        10: .line 211
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.md5:Ljava/security/MessageDigest;
            aload 2 /* handshakeBody */
            invokevirtual java.security.MessageDigest.update:([B)V
        11: .line 212
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.sha:Ljava/security/MessageDigest;
            aload 2 /* handshakeBody */
            invokevirtual java.security.MessageDigest.update:([B)V
        12: .line 213
            goto 24
        13: .line 215
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.finMD:Ljava/security/MessageDigest;
            ifnull 19
        14: .line 216
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.finMD:Ljava/security/MessageDigest;
            iload 1 /* handshakeType */
            invokevirtual java.security.MessageDigest.update:(B)V
        15: .line 217
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.finMD:Ljava/security/MessageDigest;
            aload 2 /* handshakeBody */
            arraylength
            bipush 16
            ishr
            sipush 255
            iand
            i2b
            invokevirtual java.security.MessageDigest.update:(B)V
        16: .line 218
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.finMD:Ljava/security/MessageDigest;
            aload 2 /* handshakeBody */
            arraylength
            bipush 8
            ishr
            sipush 255
            iand
            i2b
            invokevirtual java.security.MessageDigest.update:(B)V
        17: .line 219
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.finMD:Ljava/security/MessageDigest;
            aload 2 /* handshakeBody */
            arraylength
            sipush 255
            iand
            i2b
            invokevirtual java.security.MessageDigest.update:(B)V
        18: .line 220
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.finMD:Ljava/security/MessageDigest;
            aload 2 /* handshakeBody */
            invokevirtual java.security.MessageDigest.update:([B)V
        19: .line 222
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.data:Ljava/io/ByteArrayOutputStream;
            iload 1 /* handshakeType */
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        20: .line 223
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.data:Ljava/io/ByteArrayOutputStream;
            aload 2 /* handshakeBody */
            arraylength
            bipush 16
            ishr
            sipush 255
            iand
            i2b
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        21: .line 224
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.data:Ljava/io/ByteArrayOutputStream;
            aload 2 /* handshakeBody */
            arraylength
            bipush 8
            ishr
            sipush 255
            iand
            i2b
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        22: .line 225
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.data:Ljava/io/ByteArrayOutputStream;
            aload 2 /* handshakeBody */
            arraylength
            sipush 255
            iand
            i2b
            invokevirtual java.io.ByteArrayOutputStream.write:(I)V
        23: .line 226
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.data:Ljava/io/ByteArrayOutputStream;
            aload 2 /* handshakeBody */
            iconst_0
            aload 2 /* handshakeBody */
            arraylength
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
        24: .line 229
      StackMap locals:
      StackMap stack:
            return
        end local 2 // byte[] handshakeBody
        end local 1 // byte handshakeType
        end local 0 // sun.security.ssl.HandshakeHash this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   25     0           this  Lsun/security/ssl/HandshakeHash;
            0   25     1  handshakeType  B
            0   25     2  handshakeBody  [B
    MethodParameters:
               Name  Flags
      handshakeType  
      handshakeBody  

  void update(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0000) 
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // sun.security.ssl.HandshakeHash this
        start local 1 // byte[] b
        start local 2 // int offset
        start local 3 // int len
         0: .line 234
            aload 0 /* this */
            invokevirtual sun.security.ssl.HandshakeHash.reload:()V
         1: .line 236
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.version:I
            tableswitch { // 1 - 1
                    1: 2
              default: 5
          }
         2: .line 238
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.md5:Ljava/security/MessageDigest;
            aload 1 /* b */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual java.security.MessageDigest.update:([BII)V
         3: .line 239
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.sha:Ljava/security/MessageDigest;
            aload 1 /* b */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual java.security.MessageDigest.update:([BII)V
         4: .line 240
            goto 8
         5: .line 242
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.finMD:Ljava/security/MessageDigest;
            ifnull 7
         6: .line 243
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.finMD:Ljava/security/MessageDigest;
            aload 1 /* b */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual java.security.MessageDigest.update:([BII)V
         7: .line 245
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.data:Ljava/io/ByteArrayOutputStream;
            aload 1 /* b */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
         8: .line 248
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] b
        end local 0 // sun.security.ssl.HandshakeHash this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lsun/security/ssl/HandshakeHash;
            0    9     1       b  [B
            0    9     2  offset  I
            0    9     3     len  I
    MethodParameters:
        Name  Flags
      b       
      offset  
      len     

  void reset();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.security.ssl.HandshakeHash this
         0: .line 256
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.version:I
            iconst_m1
            if_icmpeq 4
         1: .line 257
            new java.lang.RuntimeException
            dup
         2: .line 258
            ldc "reset() can be only be called before protocolDetermined"
         3: .line 257
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 260
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.data:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.reset:()V
         5: .line 261
            return
        end local 0 // sun.security.ssl.HandshakeHash this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/security/ssl/HandshakeHash;

  void protocolDetermined(sun.security.ssl.ProtocolVersion);
    descriptor: (Lsun/security/ssl/ProtocolVersion;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // sun.security.ssl.HandshakeHash this
        start local 1 // sun.security.ssl.ProtocolVersion pv
         0: .line 267
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.version:I
            iconst_m1
            if_icmpeq 2
         1: .line 268
            return
         2: .line 271
      StackMap locals:
      StackMap stack:
            aload 1 /* pv */
            invokevirtual sun.security.ssl.ProtocolVersion.maybeDTLSProtocol:()Z
            ifeq 7
         3: .line 272
            aload 0 /* this */
            aload 1 /* pv */
            getstatic sun.security.ssl.ProtocolVersion.DTLS12:Lsun/security/ssl/ProtocolVersion;
            invokevirtual sun.security.ssl.ProtocolVersion.compareTo:(Lsun/security/ssl/ProtocolVersion;)I
            iflt 4
            iconst_2
            goto 5
      StackMap locals:
      StackMap stack: sun.security.ssl.HandshakeHash
         4: iconst_1
      StackMap locals: sun.security.ssl.HandshakeHash sun.security.ssl.ProtocolVersion
      StackMap stack: sun.security.ssl.HandshakeHash int
         5: putfield sun.security.ssl.HandshakeHash.version:I
         6: .line 273
            goto 10
         7: .line 274
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* pv */
            getstatic sun.security.ssl.ProtocolVersion.TLS12:Lsun/security/ssl/ProtocolVersion;
            invokevirtual sun.security.ssl.ProtocolVersion.compareTo:(Lsun/security/ssl/ProtocolVersion;)I
            iflt 8
            iconst_2
            goto 9
      StackMap locals:
      StackMap stack: sun.security.ssl.HandshakeHash
         8: iconst_1
      StackMap locals: sun.security.ssl.HandshakeHash sun.security.ssl.ProtocolVersion
      StackMap stack: sun.security.ssl.HandshakeHash int
         9: putfield sun.security.ssl.HandshakeHash.version:I
        10: .line 276
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.version:I
            tableswitch { // 1 - 2
                    1: 11
                    2: 21
              default: 21
          }
        11: .line 280
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "MD5"
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.clonesNeeded:I
            invokestatic sun.security.ssl.CloneableDigest.getDigest:(Ljava/lang/String;I)Ljava/security/MessageDigest;
            putfield sun.security.ssl.HandshakeHash.md5:Ljava/security/MessageDigest;
        12: .line 281
            aload 0 /* this */
            ldc "SHA"
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.clonesNeeded:I
            invokestatic sun.security.ssl.CloneableDigest.getDigest:(Ljava/lang/String;I)Ljava/security/MessageDigest;
            putfield sun.security.ssl.HandshakeHash.sha:Ljava/security/MessageDigest;
        13: .line 282
            goto 18
      StackMap locals:
      StackMap stack: java.security.NoSuchAlgorithmException
        14: astore 2 /* e */
        start local 2 // java.security.NoSuchAlgorithmException e
        15: .line 283
            new java.lang.RuntimeException
            dup
        16: .line 284
            ldc "Algorithm MD5 or SHA not available"
            aload 2 /* e */
        17: .line 283
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.security.NoSuchAlgorithmException e
        18: .line 286
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.data:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            astore 2 /* bytes */
        start local 2 // byte[] bytes
        19: .line 287
            aload 0 /* this */
            aload 2 /* bytes */
            iconst_0
            aload 2 /* bytes */
            arraylength
            invokevirtual sun.security.ssl.HandshakeHash.update:([BII)V
        20: .line 288
            goto 21
        end local 2 // byte[] bytes
        21: .line 292
      StackMap locals:
      StackMap stack:
            return
        end local 1 // sun.security.ssl.ProtocolVersion pv
        end local 0 // sun.security.ssl.HandshakeHash this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   22     0   this  Lsun/security/ssl/HandshakeHash;
            0   22     1     pv  Lsun/security/ssl/ProtocolVersion;
           15   18     2      e  Ljava/security/NoSuchAlgorithmException;
           19   21     2  bytes  [B
      Exception table:
        from    to  target  type
          11    13      14  Class java.security.NoSuchAlgorithmException
    MethodParameters:
      Name  Flags
      pv    

  java.security.MessageDigest getMD5Clone();
    descriptor: ()Ljava/security/MessageDigest;
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.security.ssl.HandshakeHash this
         0: .line 302
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.version:I
            iconst_1
            if_icmpeq 4
         1: .line 303
            new java.lang.RuntimeException
            dup
         2: .line 304
            ldc "getMD5Clone() can be only be called for TLS 1.1"
         3: .line 303
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 306
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.md5:Ljava/security/MessageDigest;
            invokestatic sun.security.ssl.HandshakeHash.cloneDigest:(Ljava/security/MessageDigest;)Ljava/security/MessageDigest;
            areturn
        end local 0 // sun.security.ssl.HandshakeHash this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/ssl/HandshakeHash;

  java.security.MessageDigest getSHAClone();
    descriptor: ()Ljava/security/MessageDigest;
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.security.ssl.HandshakeHash this
         0: .line 313
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.version:I
            iconst_1
            if_icmpeq 4
         1: .line 314
            new java.lang.RuntimeException
            dup
         2: .line 315
            ldc "getSHAClone() can be only be called for TLS 1.1"
         3: .line 314
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 317
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.sha:Ljava/security/MessageDigest;
            invokestatic sun.security.ssl.HandshakeHash.cloneDigest:(Ljava/security/MessageDigest;)Ljava/security/MessageDigest;
            areturn
        end local 0 // sun.security.ssl.HandshakeHash this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/ssl/HandshakeHash;

  private static java.security.MessageDigest cloneDigest(java.security.MessageDigest);
    descriptor: (Ljava/security/MessageDigest;)Ljava/security/MessageDigest;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // java.security.MessageDigest digest
         0: .line 322
            aload 0 /* digest */
            invokevirtual java.security.MessageDigest.clone:()Ljava/lang/Object;
            checkcast java.security.MessageDigest
         1: areturn
         2: .line 323
      StackMap locals:
      StackMap stack: java.lang.CloneNotSupportedException
            astore 1 /* e */
        start local 1 // java.lang.CloneNotSupportedException e
         3: .line 325
            new java.lang.RuntimeException
            dup
            ldc "Could not clone digest"
            aload 1 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.CloneNotSupportedException e
        end local 0 // java.security.MessageDigest digest
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0  digest  Ljava/security/MessageDigest;
            3    4     1       e  Ljava/lang/CloneNotSupportedException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.CloneNotSupportedException
    MethodParameters:
        Name  Flags
      digest  

  private static java.lang.String normalizeAlgName(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/String;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.String alg
         0: .line 334
            aload 0 /* alg */
            getstatic java.util.Locale.US:Ljava/util/Locale;
            invokevirtual java.lang.String.toUpperCase:(Ljava/util/Locale;)Ljava/lang/String;
            astore 0 /* alg */
         1: .line 335
            aload 0 /* alg */
            ldc "SHA"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 6
         2: .line 336
            aload 0 /* alg */
            invokevirtual java.lang.String.length:()I
            iconst_3
            if_icmpne 4
         3: .line 337
            ldc "SHA-1"
            areturn
         4: .line 339
      StackMap locals:
      StackMap stack:
            aload 0 /* alg */
            iconst_3
            invokevirtual java.lang.String.charAt:(I)C
            bipush 45
            if_icmpeq 6
         5: .line 340
            new java.lang.StringBuilder
            dup
            ldc "SHA-"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* alg */
            iconst_3
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
         6: .line 343
      StackMap locals:
      StackMap stack:
            aload 0 /* alg */
            areturn
        end local 0 // java.lang.String alg
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0   alg  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      alg   

  void setFinishedAlg(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.security.ssl.HandshakeHash this
        start local 1 // java.lang.String s
         0: .line 351
            aload 1 /* s */
            ifnonnull 4
         1: .line 352
            new java.lang.RuntimeException
            dup
         2: .line 353
            ldc "setFinishedAlg's argument cannot be null"
         3: .line 352
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 357
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.finMD:Ljava/security/MessageDigest;
            ifnull 5
            return
         5: .line 361
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* s */
            invokestatic sun.security.ssl.HandshakeHash.normalizeAlgName:(Ljava/lang/String;)Ljava/lang/String;
            iconst_4
            invokestatic sun.security.ssl.CloneableDigest.getDigest:(Ljava/lang/String;I)Ljava/security/MessageDigest;
            putfield sun.security.ssl.HandshakeHash.finMD:Ljava/security/MessageDigest;
         6: .line 362
            goto 9
      StackMap locals:
      StackMap stack: java.security.NoSuchAlgorithmException
         7: astore 2 /* e */
        start local 2 // java.security.NoSuchAlgorithmException e
         8: .line 363
            new java.lang.Error
            dup
            aload 2 /* e */
            invokespecial java.lang.Error.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.security.NoSuchAlgorithmException e
         9: .line 365
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.finMD:Ljava/security/MessageDigest;
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.data:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            invokevirtual java.security.MessageDigest.update:([B)V
        10: .line 366
            return
        end local 1 // java.lang.String s
        end local 0 // sun.security.ssl.HandshakeHash this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lsun/security/ssl/HandshakeHash;
            0   11     1     s  Ljava/lang/String;
            8    9     2     e  Ljava/security/NoSuchAlgorithmException;
      Exception table:
        from    to  target  type
           5     6       7  Class java.security.NoSuchAlgorithmException
    MethodParameters:
      Name  Flags
      s     

  byte[] getAllHandshakeMessages();
    descriptor: ()[B
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.HandshakeHash this
         0: .line 369
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.data:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            areturn
        end local 0 // sun.security.ssl.HandshakeHash this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/HandshakeHash;

  byte[] getFinishedHash();
    descriptor: ()[B
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // sun.security.ssl.HandshakeHash this
         0: .line 379
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeHash.finMD:Ljava/security/MessageDigest;
            invokestatic sun.security.ssl.HandshakeHash.cloneDigest:(Ljava/security/MessageDigest;)Ljava/security/MessageDigest;
            invokevirtual java.security.MessageDigest.digest:()[B
         1: areturn
         2: .line 380
      StackMap locals:
      StackMap stack: java.lang.Exception
            astore 1 /* e */
        start local 1 // java.lang.Exception e
         3: .line 381
            new java.lang.Error
            dup
            ldc "Error during hash calculation"
            aload 1 /* e */
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.Exception e
        end local 0 // sun.security.ssl.HandshakeHash this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/security/ssl/HandshakeHash;
            3    4     1     e  Ljava/lang/Exception;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Exception
}
SourceFile: "HandshakeHash.java"