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 379
            aload 0 /* this */
            aload 3 /* algorithm */
            invokespecial java.security.MessageDigest.<init>:(Ljava/lang/String;)V
         1: .line 380
            aload 0 /* this */
            iload 2 /* n */
            anewarray java.security.MessageDigest
            putfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
         2: .line 381
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            iconst_0
            aload 1 /* digest */
            aastore
         3: .line 382
            iconst_1
            istore 4 /* i */
        start local 4 // int i
         4: goto 7
         5: .line 383
      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 382
            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 385
            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 395
            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 397
            aload 2 /* digest */
            invokevirtual java.security.MessageDigest.clone:()Ljava/lang/Object;
            pop
         2: .line 399
            aload 2 /* digest */
         3: areturn
         4: .line 400
      StackMap locals: java.lang.String int java.security.MessageDigest
      StackMap stack: java.lang.CloneNotSupportedException
            pop
         5: .line 401
            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 415
            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 418
            aload 0 /* this */
            invokevirtual sun.security.ssl.CloneableDigest.checkState:()V
         1: .line 419
            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 423
            aload 0 /* this */
            invokevirtual sun.security.ssl.CloneableDigest.checkState:()V
         1: .line 424
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 425
      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 424
            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 427
      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 430
            aload 0 /* this */
            invokevirtual sun.security.ssl.CloneableDigest.checkState:()V
         1: .line 431
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         2: goto 5
         3: .line 432
      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 431
            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 434
      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 437
            aload 0 /* this */
            invokevirtual sun.security.ssl.CloneableDigest.checkState:()V
         1: .line 438
            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 439
            aload 0 /* this */
            invokevirtual sun.security.ssl.CloneableDigest.digestReset:()V
         3: .line 440
            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 445
            aload 0 /* this */
            invokevirtual sun.security.ssl.CloneableDigest.checkState:()V
         1: .line 446
            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 447
            aload 0 /* this */
            invokevirtual sun.security.ssl.CloneableDigest.digestReset:()V
         3: .line 448
            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 457
            iconst_1
            istore 1 /* i */
        start local 1 // int i
         1: goto 4
         2: .line 458
      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 457
            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 460
      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 463
            aload 0 /* this */
            invokevirtual sun.security.ssl.CloneableDigest.checkState:()V
         1: .line 464
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         2: goto 5
         3: .line 465
      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 464
            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 467
      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 470
            aload 0 /* this */
            invokevirtual sun.security.ssl.CloneableDigest.checkState:()V
         1: .line 471
            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 472
      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 473
            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 474
            aload 0 /* this */
            getfield sun.security.ssl.CloneableDigest.digests:[Ljava/security/MessageDigest;
            iload 1 /* i */
            aconst_null
            aastore
         6: .line 475
            aload 2 /* digest */
            areturn
        end local 2 // java.security.MessageDigest digest
         7: .line 471
      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 479
            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"