final class sun.security.ssl.CloneableDigest extends java.security.MessageDigest implements java.lang.Cloneable
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.security.ssl.CloneableDigest
  super_class: java.security.MessageDigest
{
  private final java.security.MessageDigest[] digests;
    descriptor: [Ljava/security/MessageDigest;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private void <init>(java.security.MessageDigest, int, java.lang.String);
    descriptor: (Ljava/security/MessageDigest;ILjava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // sun.security.ssl.CloneableDigest this
        start local 1 // java.security.MessageDigest digest
        start local 2 // int n
        start local 3 // java.lang.String algorithm
         0: .line 167
            aload 0 /* this */
            aload 3 /* algorithm */
            invokespecial java.security.MessageDigest.<init>:(Ljava/lang/String;)V
         1: .line 168
            aload 0 /* this */
            iload 2 /* n */
            anewarray java.security.MessageDigest
            putfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
         2: .line 169
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            iconst_0
            aload 1 /* digest */
            aastore
         3: .line 170
            iconst_1
            istore 4 /* i */
        start local 4 // int i
         4: goto 7
         5: .line 171
      StackMap locals: sun.security.ssl.CloneableDigest java.security.MessageDigest int java.lang.String int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            iload 4 /* i */
            aload 3 /* algorithm */
            invokestatic sun.security.ssl.JsseJce.getMessageDigest:(Ljava/lang/String;)Ljava/security/MessageDigest;
            aastore
         6: .line 170
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            iload 2 /* n */
            if_icmplt 5
        end local 4 // int i
         8: .line 173
            return
        end local 3 // java.lang.String algorithm
        end local 2 // int n
        end local 1 // java.security.MessageDigest digest
        end local 0 // sun.security.ssl.CloneableDigest this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lsun/security/ssl/CloneableDigest;
            0    9     1     digest  Ljava/security/MessageDigest;
            0    9     2          n  I
            0    9     3  algorithm  Ljava/lang/String;
            4    8     4          i  I
    Exceptions:
      throws java.security.NoSuchAlgorithmException
    MethodParameters:
           Name  Flags
      digest     
      n          
      algorithm  

  static java.security.MessageDigest getDigest(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)Ljava/security/MessageDigest;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // java.lang.String algorithm
        start local 1 // int n
         0: .line 183
            aload 0 /* algorithm */
            invokestatic sun.security.ssl.JsseJce.getMessageDigest:(Ljava/lang/String;)Ljava/security/MessageDigest;
            astore 2 /* digest */
        start local 2 // java.security.MessageDigest digest
         1: .line 185
            aload 2 /* digest */
            invokevirtual java.security.MessageDigest.clone:()Ljava/lang/Object;
            pop
         2: .line 187
            aload 2 /* digest */
         3: areturn
         4: .line 188
      StackMap locals: java.lang.String int java.security.MessageDigest
      StackMap stack: java.lang.CloneNotSupportedException
            pop
         5: .line 189
            new sun.security.ssl.CloneableDigest
            dup
            aload 2 /* digest */
            iload 1 /* n */
            aload 0 /* algorithm */
            invokespecial sun.security.ssl.CloneableDigest.<init>:(Ljava/security/MessageDigest;ILjava/lang/String;)V
            areturn
        end local 2 // java.security.MessageDigest digest
        end local 1 // int n
        end local 0 // java.lang.String algorithm
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0  algorithm  Ljava/lang/String;
            0    6     1          n  I
            1    6     2     digest  Ljava/security/MessageDigest;
      Exception table:
        from    to  target  type
           1     3       4  Class java.lang.CloneNotSupportedException
    Exceptions:
      throws java.security.NoSuchAlgorithmException
    MethodParameters:
           Name  Flags
      algorithm  
      n          

  private void checkState();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // sun.security.ssl.CloneableDigest this
         0: .line 203
            return
        end local 0 // sun.security.ssl.CloneableDigest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/ssl/CloneableDigest;

  protected int engineGetDigestLength();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.security.ssl.CloneableDigest this
         0: .line 206
            aload 0 /* this */
            invokevirtual sun.security.ssl.CloneableDigest.checkState:()V
         1: .line 207
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            iconst_0
            aaload
            invokevirtual java.security.MessageDigest.getDigestLength:()I
            ireturn
        end local 0 // sun.security.ssl.CloneableDigest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/ssl/CloneableDigest;

  protected void engineUpdate(byte);
    descriptor: (B)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // sun.security.ssl.CloneableDigest this
        start local 1 // byte b
         0: .line 211
            aload 0 /* this */
            invokevirtual sun.security.ssl.CloneableDigest.checkState:()V
         1: .line 212
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 213
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            iload 2 /* i */
            aaload
            iload 1 /* b */
            invokevirtual java.security.MessageDigest.update:(B)V
         4: .line 212
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            arraylength
            if_icmpge 6
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            iload 2 /* i */
            aaload
            ifnonnull 3
        end local 2 // int i
         6: .line 215
      StackMap locals:
      StackMap stack:
            return
        end local 1 // byte b
        end local 0 // sun.security.ssl.CloneableDigest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lsun/security/ssl/CloneableDigest;
            0    7     1     b  B
            2    6     2     i  I
    MethodParameters:
      Name  Flags
      b     

  protected void engineUpdate(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // sun.security.ssl.CloneableDigest this
        start local 1 // byte[] b
        start local 2 // int offset
        start local 3 // int len
         0: .line 218
            aload 0 /* this */
            invokevirtual sun.security.ssl.CloneableDigest.checkState:()V
         1: .line 219
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         2: goto 5
         3: .line 220
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            iload 4 /* i */
            aaload
            aload 1 /* b */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual java.security.MessageDigest.update:([BII)V
         4: .line 219
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 4 /* i */
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            arraylength
            if_icmpge 6
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            iload 4 /* i */
            aaload
            ifnonnull 3
        end local 4 // int i
         6: .line 222
      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.CloneableDigest this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lsun/security/ssl/CloneableDigest;
            0    7     1       b  [B
            0    7     2  offset  I
            0    7     3     len  I
            2    6     4       i  I
    MethodParameters:
        Name  Flags
      b       
      offset  
      len     

  protected byte[] engineDigest();
    descriptor: ()[B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // sun.security.ssl.CloneableDigest this
         0: .line 225
            aload 0 /* this */
            invokevirtual sun.security.ssl.CloneableDigest.checkState:()V
         1: .line 226
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            iconst_0
            aaload
            invokevirtual java.security.MessageDigest.digest:()[B
            astore 1 /* digest */
        start local 1 // byte[] digest
         2: .line 227
            aload 0 /* this */
            invokevirtual sun.security.ssl.CloneableDigest.digestReset:()V
         3: .line 228
            aload 1 /* digest */
            areturn
        end local 1 // byte[] digest
        end local 0 // sun.security.ssl.CloneableDigest this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lsun/security/ssl/CloneableDigest;
            2    4     1  digest  [B

  protected int engineDigest(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // sun.security.ssl.CloneableDigest this
        start local 1 // byte[] buf
        start local 2 // int offset
        start local 3 // int len
         0: .line 233
            aload 0 /* this */
            invokevirtual sun.security.ssl.CloneableDigest.checkState:()V
         1: .line 234
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            iconst_0
            aaload
            aload 1 /* buf */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual java.security.MessageDigest.digest:([BII)I
            istore 4 /* n */
        start local 4 // int n
         2: .line 235
            aload 0 /* this */
            invokevirtual sun.security.ssl.CloneableDigest.digestReset:()V
         3: .line 236
            iload 4 /* n */
            ireturn
        end local 4 // int n
        end local 3 // int len
        end local 2 // int offset
        end local 1 // byte[] buf
        end local 0 // sun.security.ssl.CloneableDigest this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lsun/security/ssl/CloneableDigest;
            0    4     1     buf  [B
            0    4     2  offset  I
            0    4     3     len  I
            2    4     4       n  I
    Exceptions:
      throws java.security.DigestException
    MethodParameters:
        Name  Flags
      buf     
      offset  
      len     

  private void digestReset();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // sun.security.ssl.CloneableDigest this
         0: .line 245
            iconst_1
            istore 1 /* i */
        start local 1 // int i
         1: goto 4
         2: .line 246
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            iload 1 /* i */
            aaload
            invokevirtual java.security.MessageDigest.reset:()V
         3: .line 245
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 1 /* i */
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            arraylength
            if_icmpge 5
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            iload 1 /* i */
            aaload
            ifnonnull 2
        end local 1 // int i
         5: .line 248
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.security.ssl.CloneableDigest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/security/ssl/CloneableDigest;
            1    5     1     i  I

  protected void engineReset();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // sun.security.ssl.CloneableDigest this
         0: .line 251
            aload 0 /* this */
            invokevirtual sun.security.ssl.CloneableDigest.checkState:()V
         1: .line 252
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         2: goto 5
         3: .line 253
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            iload 1 /* i */
            aaload
            invokevirtual java.security.MessageDigest.reset:()V
         4: .line 252
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 1 /* i */
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            arraylength
            if_icmpge 6
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            iload 1 /* i */
            aaload
            ifnonnull 3
        end local 1 // int i
         6: .line 255
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.security.ssl.CloneableDigest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lsun/security/ssl/CloneableDigest;
            2    6     1     i  I

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // sun.security.ssl.CloneableDigest this
         0: .line 258
            aload 0 /* this */
            invokevirtual sun.security.ssl.CloneableDigest.checkState:()V
         1: .line 259
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            arraylength
            iconst_1
            isub
            istore 1 /* i */
        start local 1 // int i
         2: goto 8
         3: .line 260
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            iload 1 /* i */
            aaload
            ifnull 7
         4: .line 261
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            iload 1 /* i */
            aaload
            astore 2 /* digest */
        start local 2 // java.security.MessageDigest digest
         5: .line 262
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            iload 1 /* i */
            aconst_null
            aastore
         6: .line 263
            aload 2 /* digest */
            areturn
        end local 2 // java.security.MessageDigest digest
         7: .line 259
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ -1
      StackMap locals:
      StackMap stack:
         8: iload 1 /* i */
            ifge 3
        end local 1 // int i
         9: .line 267
            new java.lang.InternalError
            dup
            invokespecial java.lang.InternalError.<init>:()V
            athrow
        end local 0 // sun.security.ssl.CloneableDigest this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lsun/security/ssl/CloneableDigest;
            2    9     1       i  I
            5    7     2  digest  Ljava/security/MessageDigest;
}
SourceFile: "HandshakeHash.java"