final class sun.security.ssl.HandshakeMessage$Finished extends sun.security.ssl.HandshakeMessage
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.security.ssl.HandshakeMessage$Finished
  super_class: sun.security.ssl.HandshakeMessage
{
  static final int CLIENT;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  static final int SERVER;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  private static final byte[] SSL_CLIENT;
    descriptor: [B
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final byte[] SSL_SERVER;
    descriptor: [B
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private byte[] verifyData;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  private sun.security.ssl.ProtocolVersion protocolVersion;
    descriptor: Lsun/security/ssl/ProtocolVersion;
    flags: (0x0002) ACC_PRIVATE

  private sun.security.ssl.CipherSuite cipherSuite;
    descriptor: Lsun/security/ssl/CipherSuite;
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 1844
            iconst_4
            newarray 8
            dup
            iconst_0
            bipush 67
            bastore
            dup
            iconst_1
            bipush 76
            bastore
            dup
            iconst_2
            bipush 78
            bastore
            dup
            iconst_3
            bipush 84
            bastore
            putstatic sun.security.ssl.HandshakeMessage$Finished.SSL_CLIENT:[B
         1: .line 1845
            iconst_4
            newarray 8
            dup
            iconst_0
            bipush 83
            bastore
            dup
            iconst_1
            bipush 82
            bastore
            dup
            iconst_2
            bipush 86
            bastore
            dup
            iconst_3
            bipush 82
            bastore
            putstatic sun.security.ssl.HandshakeMessage$Finished.SSL_SERVER:[B
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(sun.security.ssl.ProtocolVersion, sun.security.ssl.HandshakeHash, int, javax.crypto.SecretKey, sun.security.ssl.CipherSuite);
    descriptor: (Lsun/security/ssl/ProtocolVersion;Lsun/security/ssl/HandshakeHash;ILjavax/crypto/SecretKey;Lsun/security/ssl/CipherSuite;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=6, args_size=6
        start local 0 // sun.security.ssl.HandshakeMessage$Finished this
        start local 1 // sun.security.ssl.ProtocolVersion protocolVersion
        start local 2 // sun.security.ssl.HandshakeHash handshakeHash
        start local 3 // int sender
        start local 4 // javax.crypto.SecretKey master
        start local 5 // sun.security.ssl.CipherSuite cipherSuite
         0: .line 1863
            aload 0 /* this */
            invokespecial sun.security.ssl.HandshakeMessage.<init>:()V
         1: .line 1865
            aload 0 /* this */
            aload 1 /* protocolVersion */
            putfield sun.security.ssl.HandshakeMessage$Finished.protocolVersion:Lsun/security/ssl/ProtocolVersion;
         2: .line 1866
            aload 0 /* this */
            aload 5 /* cipherSuite */
            putfield sun.security.ssl.HandshakeMessage$Finished.cipherSuite:Lsun/security/ssl/CipherSuite;
         3: .line 1867
            aload 0 /* this */
            aload 0 /* this */
            aload 2 /* handshakeHash */
            iload 3 /* sender */
            aload 4 /* master */
            invokevirtual sun.security.ssl.HandshakeMessage$Finished.getFinished:(Lsun/security/ssl/HandshakeHash;ILjavax/crypto/SecretKey;)[B
            putfield sun.security.ssl.HandshakeMessage$Finished.verifyData:[B
         4: .line 1868
            return
        end local 5 // sun.security.ssl.CipherSuite cipherSuite
        end local 4 // javax.crypto.SecretKey master
        end local 3 // int sender
        end local 2 // sun.security.ssl.HandshakeHash handshakeHash
        end local 1 // sun.security.ssl.ProtocolVersion protocolVersion
        end local 0 // sun.security.ssl.HandshakeMessage$Finished this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    5     0             this  Lsun/security/ssl/HandshakeMessage$Finished;
            0    5     1  protocolVersion  Lsun/security/ssl/ProtocolVersion;
            0    5     2    handshakeHash  Lsun/security/ssl/HandshakeHash;
            0    5     3           sender  I
            0    5     4           master  Ljavax/crypto/SecretKey;
            0    5     5      cipherSuite  Lsun/security/ssl/CipherSuite;
    MethodParameters:
                 Name  Flags
      protocolVersion  
      handshakeHash    
      sender           
      master           
      cipherSuite      

  void <init>(sun.security.ssl.ProtocolVersion, sun.security.ssl.HandshakeInStream, sun.security.ssl.CipherSuite);
    descriptor: (Lsun/security/ssl/ProtocolVersion;Lsun/security/ssl/HandshakeInStream;Lsun/security/ssl/CipherSuite;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=5, args_size=4
        start local 0 // sun.security.ssl.HandshakeMessage$Finished this
        start local 1 // sun.security.ssl.ProtocolVersion protocolVersion
        start local 2 // sun.security.ssl.HandshakeInStream input
        start local 3 // sun.security.ssl.CipherSuite cipherSuite
         0: .line 1873
            aload 0 /* this */
            invokespecial sun.security.ssl.HandshakeMessage.<init>:()V
         1: .line 1875
            aload 0 /* this */
            aload 1 /* protocolVersion */
            putfield sun.security.ssl.HandshakeMessage$Finished.protocolVersion:Lsun/security/ssl/ProtocolVersion;
         2: .line 1876
            aload 0 /* this */
            aload 3 /* cipherSuite */
            putfield sun.security.ssl.HandshakeMessage$Finished.cipherSuite:Lsun/security/ssl/CipherSuite;
         3: .line 1877
            aload 1 /* protocolVersion */
            getfield sun.security.ssl.ProtocolVersion.v:I
            getstatic sun.security.ssl.ProtocolVersion.TLS10:Lsun/security/ssl/ProtocolVersion;
            getfield sun.security.ssl.ProtocolVersion.v:I
            if_icmplt 4
            bipush 12
            goto 5
      StackMap locals: sun.security.ssl.HandshakeMessage$Finished sun.security.ssl.ProtocolVersion sun.security.ssl.HandshakeInStream sun.security.ssl.CipherSuite
      StackMap stack:
         4: bipush 36
      StackMap locals:
      StackMap stack: int
         5: istore 4 /* msgLen */
        start local 4 // int msgLen
         6: .line 1878
            aload 0 /* this */
            iload 4 /* msgLen */
            newarray 8
            putfield sun.security.ssl.HandshakeMessage$Finished.verifyData:[B
         7: .line 1879
            aload 2 /* input */
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeMessage$Finished.verifyData:[B
            invokevirtual sun.security.ssl.HandshakeInStream.read:([B)I
            pop
         8: .line 1880
            return
        end local 4 // int msgLen
        end local 3 // sun.security.ssl.CipherSuite cipherSuite
        end local 2 // sun.security.ssl.HandshakeInStream input
        end local 1 // sun.security.ssl.ProtocolVersion protocolVersion
        end local 0 // sun.security.ssl.HandshakeMessage$Finished this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    9     0             this  Lsun/security/ssl/HandshakeMessage$Finished;
            0    9     1  protocolVersion  Lsun/security/ssl/ProtocolVersion;
            0    9     2            input  Lsun/security/ssl/HandshakeInStream;
            0    9     3      cipherSuite  Lsun/security/ssl/CipherSuite;
            6    9     4           msgLen  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                 Name  Flags
      protocolVersion  
      input            
      cipherSuite      

  boolean verify(sun.security.ssl.HandshakeHash, int, javax.crypto.SecretKey);
    descriptor: (Lsun/security/ssl/HandshakeHash;ILjavax/crypto/SecretKey;)Z
    flags: (0x0000) 
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // sun.security.ssl.HandshakeMessage$Finished this
        start local 1 // sun.security.ssl.HandshakeHash handshakeHash
        start local 2 // int sender
        start local 3 // javax.crypto.SecretKey master
         0: .line 1889
            aload 0 /* this */
            aload 1 /* handshakeHash */
            iload 2 /* sender */
            aload 3 /* master */
            invokevirtual sun.security.ssl.HandshakeMessage$Finished.getFinished:(Lsun/security/ssl/HandshakeHash;ILjavax/crypto/SecretKey;)[B
            astore 4 /* myFinished */
        start local 4 // byte[] myFinished
         1: .line 1890
            aload 4 /* myFinished */
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeMessage$Finished.verifyData:[B
            invokestatic java.security.MessageDigest.isEqual:([B[B)Z
            ireturn
        end local 4 // byte[] myFinished
        end local 3 // javax.crypto.SecretKey master
        end local 2 // int sender
        end local 1 // sun.security.ssl.HandshakeHash handshakeHash
        end local 0 // sun.security.ssl.HandshakeMessage$Finished this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lsun/security/ssl/HandshakeMessage$Finished;
            0    2     1  handshakeHash  Lsun/security/ssl/HandshakeHash;
            0    2     2         sender  I
            0    2     3         master  Ljavax/crypto/SecretKey;
            1    2     4     myFinished  [B
    MethodParameters:
               Name  Flags
      handshakeHash  
      sender         
      master         

  private byte[] getFinished(sun.security.ssl.HandshakeHash, int, javax.crypto.SecretKey);
    descriptor: (Lsun/security/ssl/HandshakeHash;ILjavax/crypto/SecretKey;)[B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=9, locals=16, args_size=4
        start local 0 // sun.security.ssl.HandshakeMessage$Finished this
        start local 1 // sun.security.ssl.HandshakeHash handshakeHash
        start local 2 // int sender
        start local 3 // javax.crypto.SecretKey masterKey
         0: .line 1900
            iload 2 /* sender */
            iconst_1
            if_icmpne 4
         1: .line 1901
            getstatic sun.security.ssl.HandshakeMessage$Finished.SSL_CLIENT:[B
            astore 4 /* sslLabel */
        start local 4 // byte[] sslLabel
         2: .line 1902
            ldc "client finished"
            astore 5 /* tlsLabel */
        start local 5 // java.lang.String tlsLabel
         3: .line 1903
            goto 9
        end local 5 // java.lang.String tlsLabel
        end local 4 // byte[] sslLabel
      StackMap locals:
      StackMap stack:
         4: iload 2 /* sender */
            iconst_2
            if_icmpne 8
         5: .line 1904
            getstatic sun.security.ssl.HandshakeMessage$Finished.SSL_SERVER:[B
            astore 4 /* sslLabel */
        start local 4 // byte[] sslLabel
         6: .line 1905
            ldc "server finished"
            astore 5 /* tlsLabel */
        start local 5 // java.lang.String tlsLabel
         7: .line 1906
            goto 9
        end local 5 // java.lang.String tlsLabel
        end local 4 // byte[] sslLabel
         8: .line 1907
      StackMap locals:
      StackMap stack:
            new java.lang.RuntimeException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid sender: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 2 /* sender */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        start local 4 // byte[] sslLabel
        start local 5 // java.lang.String tlsLabel
         9: .line 1910
      StackMap locals: byte[] java.lang.String
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeMessage$Finished.protocolVersion:Lsun/security/ssl/ProtocolVersion;
            getfield sun.security.ssl.ProtocolVersion.v:I
            getstatic sun.security.ssl.ProtocolVersion.TLS10:Lsun/security/ssl/ProtocolVersion;
            getfield sun.security.ssl.ProtocolVersion.v:I
            if_icmplt 41
        10: .line 1918
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeMessage$Finished.protocolVersion:Lsun/security/ssl/ProtocolVersion;
            getfield sun.security.ssl.ProtocolVersion.v:I
            getstatic sun.security.ssl.ProtocolVersion.TLS12:Lsun/security/ssl/ProtocolVersion;
            getfield sun.security.ssl.ProtocolVersion.v:I
            if_icmplt 15
        11: .line 1920
            aload 1 /* handshakeHash */
            invokevirtual sun.security.ssl.HandshakeHash.getFinishedHash:()[B
            astore 6 /* seed */
        start local 6 // byte[] seed
        12: .line 1922
            ldc "SunTls12Prf"
            astore 7 /* prfAlg */
        start local 7 // java.lang.String prfAlg
        13: .line 1923
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeMessage$Finished.cipherSuite:Lsun/security/ssl/CipherSuite;
            getfield sun.security.ssl.CipherSuite.prfAlg:Lsun/security/ssl/CipherSuite$PRF;
            astore 8 /* prf */
        start local 8 // sun.security.ssl.CipherSuite$PRF prf
        14: .line 1924
            goto 22
        end local 8 // sun.security.ssl.CipherSuite$PRF prf
        end local 7 // java.lang.String prfAlg
        end local 6 // byte[] seed
        15: .line 1926
      StackMap locals:
      StackMap stack:
            aload 1 /* handshakeHash */
            invokevirtual sun.security.ssl.HandshakeHash.getMD5Clone:()Ljava/security/MessageDigest;
            astore 9 /* md5Clone */
        start local 9 // java.security.MessageDigest md5Clone
        16: .line 1927
            aload 1 /* handshakeHash */
            invokevirtual sun.security.ssl.HandshakeHash.getSHAClone:()Ljava/security/MessageDigest;
            astore 10 /* shaClone */
        start local 10 // java.security.MessageDigest shaClone
        17: .line 1928
            bipush 36
            newarray 8
            astore 6 /* seed */
        start local 6 // byte[] seed
        18: .line 1929
            aload 9 /* md5Clone */
            aload 6 /* seed */
            iconst_0
            bipush 16
            invokevirtual java.security.MessageDigest.digest:([BII)I
            pop
        19: .line 1930
            aload 10 /* shaClone */
            aload 6 /* seed */
            bipush 16
            bipush 20
            invokevirtual java.security.MessageDigest.digest:([BII)I
            pop
        20: .line 1932
            ldc "SunTlsPrf"
            astore 7 /* prfAlg */
        start local 7 // java.lang.String prfAlg
        21: .line 1933
            getstatic sun.security.ssl.CipherSuite$PRF.P_NONE:Lsun/security/ssl/CipherSuite$PRF;
            astore 8 /* prf */
        end local 10 // java.security.MessageDigest shaClone
        end local 9 // java.security.MessageDigest md5Clone
        start local 8 // sun.security.ssl.CipherSuite$PRF prf
        22: .line 1936
      StackMap locals: byte[] java.lang.String sun.security.ssl.CipherSuite$PRF
      StackMap stack:
            aload 8 /* prf */
            invokevirtual sun.security.ssl.CipherSuite$PRF.getPRFHashAlg:()Ljava/lang/String;
            astore 9 /* prfHashAlg */
        start local 9 // java.lang.String prfHashAlg
        23: .line 1937
            aload 8 /* prf */
            invokevirtual sun.security.ssl.CipherSuite$PRF.getPRFHashLength:()I
            istore 10 /* prfHashLength */
        start local 10 // int prfHashLength
        24: .line 1938
            aload 8 /* prf */
            invokevirtual sun.security.ssl.CipherSuite$PRF.getPRFBlockSize:()I
            istore 11 /* prfBlockSize */
        start local 11 // int prfBlockSize
        25: .line 1946
            new sun.security.internal.spec.TlsPrfParameterSpec
            dup
        26: .line 1947
            aload 3 /* masterKey */
            aload 5 /* tlsLabel */
            aload 6 /* seed */
            bipush 12
        27: .line 1948
            aload 9 /* prfHashAlg */
            iload 10 /* prfHashLength */
            iload 11 /* prfBlockSize */
        28: .line 1946
            invokespecial sun.security.internal.spec.TlsPrfParameterSpec.<init>:(Ljavax/crypto/SecretKey;Ljava/lang/String;[BILjava/lang/String;II)V
            astore 12 /* spec */
        start local 12 // sun.security.internal.spec.TlsPrfParameterSpec spec
        29: .line 1950
            aload 7 /* prfAlg */
            invokestatic sun.security.ssl.JsseJce.getKeyGenerator:(Ljava/lang/String;)Ljavax/crypto/KeyGenerator;
            astore 13 /* kg */
        start local 13 // javax.crypto.KeyGenerator kg
        30: .line 1951
            aload 13 /* kg */
            aload 12 /* spec */
            invokevirtual javax.crypto.KeyGenerator.init:(Ljava/security/spec/AlgorithmParameterSpec;)V
        31: .line 1952
            aload 13 /* kg */
            invokevirtual javax.crypto.KeyGenerator.generateKey:()Ljavax/crypto/SecretKey;
            astore 14 /* prfKey */
        start local 14 // javax.crypto.SecretKey prfKey
        32: .line 1953
            ldc "RAW"
            aload 14 /* prfKey */
            invokeinterface javax.crypto.SecretKey.getFormat:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 36
        33: .line 1954
            new java.security.ProviderException
            dup
        34: .line 1955
            ldc "Invalid PRF output, format must be RAW"
        35: .line 1954
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
        36: .line 1957
      StackMap locals: sun.security.ssl.HandshakeMessage$Finished sun.security.ssl.HandshakeHash int javax.crypto.SecretKey byte[] java.lang.String byte[] java.lang.String sun.security.ssl.CipherSuite$PRF java.lang.String int int sun.security.internal.spec.TlsPrfParameterSpec javax.crypto.KeyGenerator javax.crypto.SecretKey
      StackMap stack:
            aload 14 /* prfKey */
            invokeinterface javax.crypto.SecretKey.getEncoded:()[B
            astore 15 /* finished */
        start local 15 // byte[] finished
        37: .line 1958
            aload 15 /* finished */
        38: areturn
        end local 15 // byte[] finished
        end local 14 // javax.crypto.SecretKey prfKey
        end local 13 // javax.crypto.KeyGenerator kg
        end local 12 // sun.security.internal.spec.TlsPrfParameterSpec spec
        end local 11 // int prfBlockSize
        end local 10 // int prfHashLength
        end local 9 // java.lang.String prfHashAlg
        end local 8 // sun.security.ssl.CipherSuite$PRF prf
        end local 7 // java.lang.String prfAlg
        end local 6 // byte[] seed
        39: .line 1959
      StackMap locals: sun.security.ssl.HandshakeMessage$Finished sun.security.ssl.HandshakeHash int javax.crypto.SecretKey byte[] java.lang.String
      StackMap stack: java.security.GeneralSecurityException
            astore 6 /* e */
        start local 6 // java.security.GeneralSecurityException e
        40: .line 1960
            new java.lang.RuntimeException
            dup
            ldc "PRF failed"
            aload 6 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 6 // java.security.GeneralSecurityException e
        41: .line 1964
      StackMap locals:
      StackMap stack:
            aload 1 /* handshakeHash */
            invokevirtual sun.security.ssl.HandshakeHash.getMD5Clone:()Ljava/security/MessageDigest;
            astore 6 /* md5Clone */
        start local 6 // java.security.MessageDigest md5Clone
        42: .line 1965
            aload 1 /* handshakeHash */
            invokevirtual sun.security.ssl.HandshakeHash.getSHAClone:()Ljava/security/MessageDigest;
            astore 7 /* shaClone */
        start local 7 // java.security.MessageDigest shaClone
        43: .line 1966
            aload 6 /* md5Clone */
            aload 4 /* sslLabel */
            getstatic sun.security.ssl.HandshakeMessage$Finished.MD5_pad1:[B
            getstatic sun.security.ssl.HandshakeMessage$Finished.MD5_pad2:[B
            aload 3 /* masterKey */
            invokestatic sun.security.ssl.HandshakeMessage$Finished.updateDigest:(Ljava/security/MessageDigest;[B[B[BLjavax/crypto/SecretKey;)V
        44: .line 1967
            aload 7 /* shaClone */
            aload 4 /* sslLabel */
            getstatic sun.security.ssl.HandshakeMessage$Finished.SHA_pad1:[B
            getstatic sun.security.ssl.HandshakeMessage$Finished.SHA_pad2:[B
            aload 3 /* masterKey */
            invokestatic sun.security.ssl.HandshakeMessage$Finished.updateDigest:(Ljava/security/MessageDigest;[B[B[BLjavax/crypto/SecretKey;)V
        45: .line 1968
            bipush 36
            newarray 8
            astore 8 /* finished */
        start local 8 // byte[] finished
        46: .line 1970
            aload 6 /* md5Clone */
            aload 8 /* finished */
            iconst_0
            bipush 16
            invokevirtual java.security.MessageDigest.digest:([BII)I
            pop
        47: .line 1971
            aload 7 /* shaClone */
            aload 8 /* finished */
            bipush 16
            bipush 20
            invokevirtual java.security.MessageDigest.digest:([BII)I
            pop
        48: .line 1972
            goto 51
      StackMap locals: sun.security.ssl.HandshakeMessage$Finished sun.security.ssl.HandshakeHash int javax.crypto.SecretKey byte[] java.lang.String java.security.MessageDigest java.security.MessageDigest byte[]
      StackMap stack: java.security.DigestException
        49: astore 9 /* e */
        start local 9 // java.security.DigestException e
        50: .line 1974
            new java.lang.RuntimeException
            dup
            ldc "Digest failed"
            aload 9 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 9 // java.security.DigestException e
        51: .line 1976
      StackMap locals:
      StackMap stack:
            aload 8 /* finished */
            areturn
        end local 8 // byte[] finished
        end local 7 // java.security.MessageDigest shaClone
        end local 6 // java.security.MessageDigest md5Clone
        end local 5 // java.lang.String tlsLabel
        end local 4 // byte[] sslLabel
        end local 3 // javax.crypto.SecretKey masterKey
        end local 2 // int sender
        end local 1 // sun.security.ssl.HandshakeHash handshakeHash
        end local 0 // sun.security.ssl.HandshakeMessage$Finished this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   52     0           this  Lsun/security/ssl/HandshakeMessage$Finished;
            0   52     1  handshakeHash  Lsun/security/ssl/HandshakeHash;
            0   52     2         sender  I
            0   52     3      masterKey  Ljavax/crypto/SecretKey;
            2    4     4       sslLabel  [B
            6    8     4       sslLabel  [B
            9   52     4       sslLabel  [B
            3    4     5       tlsLabel  Ljava/lang/String;
            7    8     5       tlsLabel  Ljava/lang/String;
            9   52     5       tlsLabel  Ljava/lang/String;
           12   15     6           seed  [B
           18   39     6           seed  [B
           13   15     7         prfAlg  Ljava/lang/String;
           21   39     7         prfAlg  Ljava/lang/String;
           14   15     8            prf  Lsun/security/ssl/CipherSuite$PRF;
           22   39     8            prf  Lsun/security/ssl/CipherSuite$PRF;
           16   22     9       md5Clone  Ljava/security/MessageDigest;
           17   22    10       shaClone  Ljava/security/MessageDigest;
           23   39     9     prfHashAlg  Ljava/lang/String;
           24   39    10  prfHashLength  I
           25   39    11   prfBlockSize  I
           29   39    12           spec  Lsun/security/internal/spec/TlsPrfParameterSpec;
           30   39    13             kg  Ljavax/crypto/KeyGenerator;
           32   39    14         prfKey  Ljavax/crypto/SecretKey;
           37   39    15       finished  [B
           40   41     6              e  Ljava/security/GeneralSecurityException;
           42   52     6       md5Clone  Ljava/security/MessageDigest;
           43   52     7       shaClone  Ljava/security/MessageDigest;
           46   52     8       finished  [B
           50   51     9              e  Ljava/security/DigestException;
      Exception table:
        from    to  target  type
          10    38      39  Class java.security.GeneralSecurityException
          46    48      49  Class java.security.DigestException
    MethodParameters:
               Name  Flags
      handshakeHash  
      sender         
      masterKey      

  private static void updateDigest(java.security.MessageDigest, byte[], byte[], byte[], javax.crypto.SecretKey);
    descriptor: (Ljava/security/MessageDigest;[B[B[BLjavax/crypto/SecretKey;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // java.security.MessageDigest md
        start local 1 // byte[] sender
        start local 2 // byte[] pad1
        start local 3 // byte[] pad2
        start local 4 // javax.crypto.SecretKey masterSecret
         0: .line 1988
            aload 0 /* md */
            aload 1 /* sender */
            invokevirtual java.security.MessageDigest.update:([B)V
         1: .line 1989
            aload 0 /* md */
            aload 2 /* pad1 */
            aload 3 /* pad2 */
            aload 4 /* masterSecret */
            invokestatic sun.security.ssl.HandshakeMessage$CertificateVerify.updateDigest:(Ljava/security/MessageDigest;[B[BLjavax/crypto/SecretKey;)V
         2: .line 1990
            return
        end local 4 // javax.crypto.SecretKey masterSecret
        end local 3 // byte[] pad2
        end local 2 // byte[] pad1
        end local 1 // byte[] sender
        end local 0 // java.security.MessageDigest md
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0            md  Ljava/security/MessageDigest;
            0    3     1        sender  [B
            0    3     2          pad1  [B
            0    3     3          pad2  [B
            0    3     4  masterSecret  Ljavax/crypto/SecretKey;
    MethodParameters:
              Name  Flags
      md            
      sender        
      pad1          
      pad2          
      masterSecret  

  byte[] getVerifyData();
    descriptor: ()[B
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.HandshakeMessage$Finished this
         0: .line 1994
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeMessage$Finished.verifyData:[B
            areturn
        end local 0 // sun.security.ssl.HandshakeMessage$Finished this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/HandshakeMessage$Finished;

  int messageType();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.HandshakeMessage$Finished this
         0: .line 1998
            bipush 20
            ireturn
        end local 0 // sun.security.ssl.HandshakeMessage$Finished this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/HandshakeMessage$Finished;

  int messageLength();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.ssl.HandshakeMessage$Finished this
         0: .line 2002
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeMessage$Finished.verifyData:[B
            arraylength
            ireturn
        end local 0 // sun.security.ssl.HandshakeMessage$Finished this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/HandshakeMessage$Finished;

  void send(sun.security.ssl.HandshakeOutStream);
    descriptor: (Lsun/security/ssl/HandshakeOutStream;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.ssl.HandshakeMessage$Finished this
        start local 1 // sun.security.ssl.HandshakeOutStream out
         0: .line 2007
            aload 1 /* out */
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeMessage$Finished.verifyData:[B
            invokevirtual sun.security.ssl.HandshakeOutStream.write:([B)V
         1: .line 2008
            return
        end local 1 // sun.security.ssl.HandshakeOutStream out
        end local 0 // sun.security.ssl.HandshakeMessage$Finished this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/ssl/HandshakeMessage$Finished;
            0    2     1   out  Lsun/security/ssl/HandshakeOutStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  void print(java.io.PrintStream);
    descriptor: (Ljava/io/PrintStream;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.security.ssl.HandshakeMessage$Finished this
        start local 1 // java.io.PrintStream s
         0: .line 2012
            aload 1 /* s */
            ldc "*** Finished"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 2013
            getstatic sun.security.ssl.HandshakeMessage$Finished.debug:Lsun/security/ssl/Debug;
            ifnull 4
            ldc "verbose"
            invokestatic sun.security.ssl.Debug.isOn:(Ljava/lang/String;)Z
            ifeq 4
         2: .line 2014
            aload 1 /* s */
            ldc "verify_data"
            aload 0 /* this */
            getfield sun.security.ssl.HandshakeMessage$Finished.verifyData:[B
            invokestatic sun.security.ssl.Debug.println:(Ljava/io/PrintStream;Ljava/lang/String;[B)V
         3: .line 2015
            aload 1 /* s */
            ldc "***"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         4: .line 2017
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.io.PrintStream s
        end local 0 // sun.security.ssl.HandshakeMessage$Finished this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/ssl/HandshakeMessage$Finished;
            0    5     1     s  Ljava/io/PrintStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      s     
}
SourceFile: "HandshakeMessage.java"
NestHost: sun.security.ssl.HandshakeMessage
InnerClasses:
  final PRF = sun.security.ssl.CipherSuite$PRF of sun.security.ssl.CipherSuite
  final CertificateVerify = sun.security.ssl.HandshakeMessage$CertificateVerify of sun.security.ssl.HandshakeMessage
  final Finished = sun.security.ssl.HandshakeMessage$Finished of sun.security.ssl.HandshakeMessage