final class com.sun.crypto.provider.PBKDF2KeyImpl implements javax.crypto.interfaces.PBEKey
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.sun.crypto.provider.PBKDF2KeyImpl
  super_class: java.lang.Object
{
  static final long serialVersionUID;
    descriptor: J
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: -2234868909660948157

  private char[] passwd;
    descriptor: [C
    flags: (0x0002) ACC_PRIVATE

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

  private int iterCount;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

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

  private javax.crypto.Mac prf;
    descriptor: Ljavax/crypto/Mac;
    flags: (0x0002) ACC_PRIVATE

  private static byte[] getPasswordBytes(char[]);
    descriptor: ([C)[B
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // char[] passwd
         0: .line 68
            ldc "UTF-8"
            invokestatic java.nio.charset.Charset.forName:(Ljava/lang/String;)Ljava/nio/charset/Charset;
            astore 1 /* utf8 */
        start local 1 // java.nio.charset.Charset utf8
         1: .line 69
            aload 0 /* passwd */
            invokestatic java.nio.CharBuffer.wrap:([C)Ljava/nio/CharBuffer;
            astore 2 /* cb */
        start local 2 // java.nio.CharBuffer cb
         2: .line 70
            aload 1 /* utf8 */
            aload 2 /* cb */
            invokevirtual java.nio.charset.Charset.encode:(Ljava/nio/CharBuffer;)Ljava/nio/ByteBuffer;
            astore 3 /* bb */
        start local 3 // java.nio.ByteBuffer bb
         3: .line 72
            aload 3 /* bb */
            invokevirtual java.nio.ByteBuffer.limit:()I
            istore 4 /* len */
        start local 4 // int len
         4: .line 73
            iload 4 /* len */
            newarray 8
            astore 5 /* passwdBytes */
        start local 5 // byte[] passwdBytes
         5: .line 74
            aload 3 /* bb */
            aload 5 /* passwdBytes */
            iconst_0
            iload 4 /* len */
            invokevirtual java.nio.ByteBuffer.get:([BII)Ljava/nio/ByteBuffer;
            pop
         6: .line 76
            aload 5 /* passwdBytes */
            areturn
        end local 5 // byte[] passwdBytes
        end local 4 // int len
        end local 3 // java.nio.ByteBuffer bb
        end local 2 // java.nio.CharBuffer cb
        end local 1 // java.nio.charset.Charset utf8
        end local 0 // char[] passwd
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0       passwd  [C
            1    7     1         utf8  Ljava/nio/charset/Charset;
            2    7     2           cb  Ljava/nio/CharBuffer;
            3    7     3           bb  Ljava/nio/ByteBuffer;
            4    7     4          len  I
            5    7     5  passwdBytes  [B
    MethodParameters:
        Name  Flags
      passwd  

  void <init>(javax.crypto.spec.PBEKeySpec, java.lang.String);
    descriptor: (Ljavax/crypto/spec/PBEKeySpec;Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=6, locals=10, args_size=3
        start local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
        start local 1 // javax.crypto.spec.PBEKeySpec keySpec
        start local 2 // java.lang.String prfAlgo
         0: .line 85
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 87
            aload 1 /* keySpec */
            invokevirtual javax.crypto.spec.PBEKeySpec.getPassword:()[C
            astore 3 /* passwd */
        start local 3 // char[] passwd
         2: .line 88
            aload 3 /* passwd */
            ifnonnull 5
         3: .line 90
            aload 0 /* this */
            iconst_0
            newarray 5
            putfield com.sun.crypto.provider.PBKDF2KeyImpl.passwd:[C
         4: .line 91
            goto 6
         5: .line 92
      StackMap locals: com.sun.crypto.provider.PBKDF2KeyImpl javax.crypto.spec.PBEKeySpec java.lang.String char[]
      StackMap stack:
            aload 0 /* this */
            aload 3 /* passwd */
            invokevirtual char[].clone:()Ljava/lang/Object;
            checkcast char[]
            putfield com.sun.crypto.provider.PBKDF2KeyImpl.passwd:[C
         6: .line 95
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBKDF2KeyImpl.passwd:[C
            invokestatic com.sun.crypto.provider.PBKDF2KeyImpl.getPasswordBytes:([C)[B
            astore 4 /* passwdBytes */
        start local 4 // byte[] passwdBytes
         7: .line 97
            aload 3 /* passwd */
            ifnull 8
            aload 3 /* passwd */
            iconst_0
            invokestatic java.util.Arrays.fill:([CC)V
         8: .line 100
      StackMap locals: byte[]
      StackMap stack:
            aload 0 /* this */
            aload 1 /* keySpec */
            invokevirtual javax.crypto.spec.PBEKeySpec.getSalt:()[B
            putfield com.sun.crypto.provider.PBKDF2KeyImpl.salt:[B
         9: .line 101
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBKDF2KeyImpl.salt:[B
            ifnonnull 11
        10: .line 102
            new java.security.spec.InvalidKeySpecException
            dup
            ldc "Salt not found"
            invokespecial java.security.spec.InvalidKeySpecException.<init>:(Ljava/lang/String;)V
            athrow
        11: .line 104
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* keySpec */
            invokevirtual javax.crypto.spec.PBEKeySpec.getIterationCount:()I
            putfield com.sun.crypto.provider.PBKDF2KeyImpl.iterCount:I
        12: .line 105
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBKDF2KeyImpl.iterCount:I
            ifne 14
        13: .line 106
            new java.security.spec.InvalidKeySpecException
            dup
            ldc "Iteration count not found"
            invokespecial java.security.spec.InvalidKeySpecException.<init>:(Ljava/lang/String;)V
            athrow
        14: .line 107
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBKDF2KeyImpl.iterCount:I
            ifge 16
        15: .line 108
            new java.security.spec.InvalidKeySpecException
            dup
            ldc "Iteration count is negative"
            invokespecial java.security.spec.InvalidKeySpecException.<init>:(Ljava/lang/String;)V
            athrow
        16: .line 110
      StackMap locals:
      StackMap stack:
            aload 1 /* keySpec */
            invokevirtual javax.crypto.spec.PBEKeySpec.getKeyLength:()I
            istore 5 /* keyLength */
        start local 5 // int keyLength
        17: .line 111
            iload 5 /* keyLength */
            ifne 19
        18: .line 112
            new java.security.spec.InvalidKeySpecException
            dup
            ldc "Key length not found"
            invokespecial java.security.spec.InvalidKeySpecException.<init>:(Ljava/lang/String;)V
            athrow
        19: .line 113
      StackMap locals: int
      StackMap stack:
            iload 5 /* keyLength */
            ifge 21
        20: .line 114
            new java.security.spec.InvalidKeySpecException
            dup
            ldc "Key length is negative"
            invokespecial java.security.spec.InvalidKeySpecException.<init>:(Ljava/lang/String;)V
            athrow
        21: .line 116
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* prfAlgo */
            invokestatic com.sun.crypto.provider.SunJCE.getInstance:()Lcom/sun/crypto/provider/SunJCE;
            invokestatic javax.crypto.Mac.getInstance:(Ljava/lang/String;Ljava/security/Provider;)Ljavax/crypto/Mac;
            putfield com.sun.crypto.provider.PBKDF2KeyImpl.prf:Ljavax/crypto/Mac;
        22: .line 117
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBKDF2KeyImpl.prf:Ljavax/crypto/Mac;
            aload 4 /* passwdBytes */
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBKDF2KeyImpl.salt:[B
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBKDF2KeyImpl.iterCount:I
            iload 5 /* keyLength */
            invokestatic com.sun.crypto.provider.PBKDF2KeyImpl.deriveKey:(Ljavax/crypto/Mac;[B[BII)[B
            putfield com.sun.crypto.provider.PBKDF2KeyImpl.key:[B
        end local 5 // int keyLength
        23: .line 118
            goto 36
      StackMap locals: com.sun.crypto.provider.PBKDF2KeyImpl javax.crypto.spec.PBEKeySpec java.lang.String char[] byte[]
      StackMap stack: java.security.NoSuchAlgorithmException
        24: astore 5 /* nsae */
        start local 5 // java.security.NoSuchAlgorithmException nsae
        25: .line 120
            new java.security.spec.InvalidKeySpecException
            dup
            invokespecial java.security.spec.InvalidKeySpecException.<init>:()V
            astore 6 /* ike */
        start local 6 // java.security.spec.InvalidKeySpecException ike
        26: .line 121
            aload 6 /* ike */
            aload 5 /* nsae */
            invokevirtual java.security.spec.InvalidKeySpecException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
        27: .line 122
            aload 6 /* ike */
            athrow
        end local 6 // java.security.spec.InvalidKeySpecException ike
        end local 5 // java.security.NoSuchAlgorithmException nsae
        28: .line 123
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 7
        29: .line 124
            aload 4 /* passwdBytes */
            iconst_0
            invokestatic java.util.Arrays.fill:([BB)V
        30: .line 127
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBKDF2KeyImpl.key:[B
            astore 8 /* k */
        start local 8 // byte[] k
        31: .line 128
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBKDF2KeyImpl.passwd:[C
            astore 9 /* p */
        start local 9 // char[] p
        32: .line 129
            invokestatic jdk.internal.ref.CleanerFactory.cleaner:()Ljava/lang/ref/Cleaner;
            aload 0 /* this */
        33: .line 130
            aload 8 /* k */
            aload 9 /* p */
            invokedynamic run([B[C)Ljava/lang/Runnable;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()V
                  com/sun/crypto/provider/PBKDF2KeyImpl.lambda$0([B[C)V (6)
                  ()V
        34: .line 129
            invokevirtual java.lang.ref.Cleaner.register:(Ljava/lang/Object;Ljava/lang/Runnable;)Ljava/lang/ref/Cleaner$Cleanable;
            pop
        end local 9 // char[] p
        end local 8 // byte[] k
        35: .line 134
            aload 7
            athrow
        36: .line 124
      StackMap locals:
      StackMap stack:
            aload 4 /* passwdBytes */
            iconst_0
            invokestatic java.util.Arrays.fill:([BB)V
        37: .line 127
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBKDF2KeyImpl.key:[B
            astore 8 /* k */
        start local 8 // byte[] k
        38: .line 128
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBKDF2KeyImpl.passwd:[C
            astore 9 /* p */
        start local 9 // char[] p
        39: .line 129
            invokestatic jdk.internal.ref.CleanerFactory.cleaner:()Ljava/lang/ref/Cleaner;
            aload 0 /* this */
        40: .line 130
            aload 8 /* k */
            aload 9 /* p */
            invokedynamic run([B[C)Ljava/lang/Runnable;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()V
                  com/sun/crypto/provider/PBKDF2KeyImpl.lambda$0([B[C)V (6)
                  ()V
        41: .line 129
            invokevirtual java.lang.ref.Cleaner.register:(Ljava/lang/Object;Ljava/lang/Runnable;)Ljava/lang/ref/Cleaner$Cleanable;
            pop
        end local 9 // char[] p
        end local 8 // byte[] k
        42: .line 135
            return
        end local 4 // byte[] passwdBytes
        end local 3 // char[] passwd
        end local 2 // java.lang.String prfAlgo
        end local 1 // javax.crypto.spec.PBEKeySpec keySpec
        end local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   43     0         this  Lcom/sun/crypto/provider/PBKDF2KeyImpl;
            0   43     1      keySpec  Ljavax/crypto/spec/PBEKeySpec;
            0   43     2      prfAlgo  Ljava/lang/String;
            2   43     3       passwd  [C
            7   43     4  passwdBytes  [B
           17   23     5    keyLength  I
           25   28     5         nsae  Ljava/security/NoSuchAlgorithmException;
           26   28     6          ike  Ljava/security/spec/InvalidKeySpecException;
           31   35     8            k  [B
           38   42     8            k  [B
           32   35     9            p  [C
           39   42     9            p  [C
      Exception table:
        from    to  target  type
           8    23      24  Class java.security.NoSuchAlgorithmException
           8    28      28  any
    Exceptions:
      throws java.security.spec.InvalidKeySpecException
    MethodParameters:
         Name  Flags
      keySpec  
      prfAlgo  

  private static byte[] deriveKey(javax.crypto.Mac, byte[], byte[], int, int);
    descriptor: (Ljavax/crypto/Mac;[B[BII)[B
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=17, args_size=5
        start local 0 // javax.crypto.Mac prf
        start local 1 // byte[] password
        start local 2 // byte[] salt
        start local 3 // int iterCount
        start local 4 // int keyLengthInBit
         0: .line 139
            iload 4 /* keyLengthInBit */
            bipush 8
            idiv
            istore 5 /* keyLength */
        start local 5 // int keyLength
         1: .line 140
            iload 5 /* keyLength */
            newarray 8
            astore 6 /* key */
        start local 6 // byte[] key
         2: .line 142
            aload 0 /* prf */
            invokevirtual javax.crypto.Mac.getMacLength:()I
            istore 7 /* hlen */
        start local 7 // int hlen
         3: .line 143
            iload 5 /* keyLength */
            iload 7 /* hlen */
            iadd
            iconst_1
            isub
            iload 7 /* hlen */
            idiv
            istore 8 /* intL */
        start local 8 // int intL
         4: .line 144
            iload 5 /* keyLength */
            iload 8 /* intL */
            iconst_1
            isub
            iload 7 /* hlen */
            imul
            isub
            istore 9 /* intR */
        start local 9 // int intR
         5: .line 145
            iload 7 /* hlen */
            newarray 8
            astore 10 /* ui */
        start local 10 // byte[] ui
         6: .line 146
            iload 7 /* hlen */
            newarray 8
            astore 11 /* ti */
        start local 11 // byte[] ti
         7: .line 148
            new com.sun.crypto.provider.PBKDF2KeyImpl$1
            dup
            aload 0 /* prf */
            aload 1 /* password */
            invokespecial com.sun.crypto.provider.PBKDF2KeyImpl$1.<init>:(Ljavax/crypto/Mac;[B)V
            astore 12 /* macKey */
        start local 12 // javax.crypto.SecretKey macKey
         8: .line 177
            aload 0 /* prf */
            aload 12 /* macKey */
            invokevirtual javax.crypto.Mac.init:(Ljava/security/Key;)V
         9: .line 179
            iconst_4
            newarray 8
            astore 13 /* ibytes */
        start local 13 // byte[] ibytes
        10: .line 180
            iconst_1
            istore 14 /* i */
        start local 14 // int i
        11: goto 36
        12: .line 181
      StackMap locals: javax.crypto.Mac byte[] byte[] int int int byte[] int int int byte[] byte[] javax.crypto.SecretKey byte[] int
      StackMap stack:
            aload 0 /* prf */
            aload 2 /* salt */
            invokevirtual javax.crypto.Mac.update:([B)V
        13: .line 182
            aload 13 /* ibytes */
            iconst_3
            iload 14 /* i */
            i2b
            bastore
        14: .line 183
            aload 13 /* ibytes */
            iconst_2
            iload 14 /* i */
            bipush 8
            ishr
            sipush 255
            iand
            i2b
            bastore
        15: .line 184
            aload 13 /* ibytes */
            iconst_1
            iload 14 /* i */
            bipush 16
            ishr
            sipush 255
            iand
            i2b
            bastore
        16: .line 185
            aload 13 /* ibytes */
            iconst_0
            iload 14 /* i */
            bipush 24
            ishr
            sipush 255
            iand
            i2b
            bastore
        17: .line 186
            aload 0 /* prf */
            aload 13 /* ibytes */
            invokevirtual javax.crypto.Mac.update:([B)V
        18: .line 187
            aload 0 /* prf */
            aload 10 /* ui */
            iconst_0
            invokevirtual javax.crypto.Mac.doFinal:([BI)V
        19: .line 188
            aload 10 /* ui */
            iconst_0
            aload 11 /* ti */
            iconst_0
            aload 10 /* ui */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        20: .line 190
            iconst_2
            istore 15 /* j */
        start local 15 // int j
        21: goto 30
        22: .line 191
      StackMap locals: int
      StackMap stack:
            aload 0 /* prf */
            aload 10 /* ui */
            invokevirtual javax.crypto.Mac.update:([B)V
        23: .line 192
            aload 0 /* prf */
            aload 10 /* ui */
            iconst_0
            invokevirtual javax.crypto.Mac.doFinal:([BI)V
        24: .line 194
            iconst_0
            istore 16 /* k */
        start local 16 // int k
        25: goto 28
        26: .line 195
      StackMap locals: int
      StackMap stack:
            aload 11 /* ti */
            iload 16 /* k */
            dup2
            baload
            aload 10 /* ui */
            iload 16 /* k */
            baload
            ixor
            i2b
            bastore
        27: .line 194
            iinc 16 /* k */ 1
      StackMap locals:
      StackMap stack:
        28: iload 16 /* k */
            aload 10 /* ui */
            arraylength
            if_icmplt 26
        end local 16 // int k
        29: .line 190
            iinc 15 /* j */ 1
      StackMap locals:
      StackMap stack:
        30: iload 15 /* j */
            iload 3 /* iterCount */
            if_icmple 22
        end local 15 // int j
        31: .line 198
            iload 14 /* i */
            iload 8 /* intL */
            if_icmpne 34
        32: .line 199
            aload 11 /* ti */
            iconst_0
            aload 6 /* key */
            iload 14 /* i */
            iconst_1
            isub
            iload 7 /* hlen */
            imul
            iload 9 /* intR */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        33: .line 200
            goto 35
        34: .line 201
      StackMap locals:
      StackMap stack:
            aload 11 /* ti */
            iconst_0
            aload 6 /* key */
            iload 14 /* i */
            iconst_1
            isub
            iload 7 /* hlen */
            imul
            iload 7 /* hlen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        35: .line 180
      StackMap locals:
      StackMap stack:
            iinc 14 /* i */ 1
      StackMap locals:
      StackMap stack:
        36: iload 14 /* i */
            iload 8 /* intL */
            if_icmple 12
        end local 14 // int i
        end local 13 // byte[] ibytes
        end local 12 // javax.crypto.SecretKey macKey
        end local 11 // byte[] ti
        end local 10 // byte[] ui
        end local 9 // int intR
        end local 8 // int intL
        end local 7 // int hlen
        37: .line 204
            goto 40
      StackMap locals: javax.crypto.Mac byte[] byte[] int int int byte[]
      StackMap stack: java.security.GeneralSecurityException
        38: astore 7 /* gse */
        start local 7 // java.security.GeneralSecurityException gse
        39: .line 205
            new java.lang.RuntimeException
            dup
            ldc "Error deriving PBKDF2 keys"
            aload 7 /* gse */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 7 // java.security.GeneralSecurityException gse
        40: .line 207
      StackMap locals:
      StackMap stack:
            aload 6 /* key */
            areturn
        end local 6 // byte[] key
        end local 5 // int keyLength
        end local 4 // int keyLengthInBit
        end local 3 // int iterCount
        end local 2 // byte[] salt
        end local 1 // byte[] password
        end local 0 // javax.crypto.Mac prf
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   41     0             prf  Ljavax/crypto/Mac;
            0   41     1        password  [B
            0   41     2            salt  [B
            0   41     3       iterCount  I
            0   41     4  keyLengthInBit  I
            1   41     5       keyLength  I
            2   41     6             key  [B
            3   37     7            hlen  I
            4   37     8            intL  I
            5   37     9            intR  I
            6   37    10              ui  [B
            7   37    11              ti  [B
            8   37    12          macKey  Ljavax/crypto/SecretKey;
           10   37    13          ibytes  [B
           11   37    14               i  I
           21   31    15               j  I
           25   29    16               k  I
           39   40     7             gse  Ljava/security/GeneralSecurityException;
      Exception table:
        from    to  target  type
           2    37      38  Class java.security.GeneralSecurityException
    MethodParameters:
                Name  Flags
      prf             final
      password        final
      salt            
      iterCount       
      keyLengthInBit  

  public byte[] getEncoded();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
         0: .line 213
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBKDF2KeyImpl.key:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            astore 1 /* result */
        start local 1 // byte[] result
         1: .line 214
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
         2: .line 215
            aload 1 /* result */
            areturn
        end local 1 // byte[] result
        end local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/sun/crypto/provider/PBKDF2KeyImpl;
            1    3     1  result  [B

  public java.lang.String getAlgorithm();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
         0: .line 219
            new java.lang.StringBuilder
            dup
            ldc "PBKDF2With"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBKDF2KeyImpl.prf:Ljavax/crypto/Mac;
            invokevirtual javax.crypto.Mac.getAlgorithm:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/crypto/provider/PBKDF2KeyImpl;

  public int getIterationCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
         0: .line 223
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBKDF2KeyImpl.iterCount:I
            ireturn
        end local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/crypto/provider/PBKDF2KeyImpl;

  public char[] getPassword();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
         0: .line 229
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBKDF2KeyImpl.passwd:[C
            invokevirtual char[].clone:()Ljava/lang/Object;
            checkcast char[]
            astore 1 /* result */
        start local 1 // char[] result
         1: .line 230
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
         2: .line 231
            aload 1 /* result */
            areturn
        end local 1 // char[] result
        end local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/sun/crypto/provider/PBKDF2KeyImpl;
            1    3     1  result  [C

  public byte[] getSalt();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
         0: .line 235
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBKDF2KeyImpl.salt:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            areturn
        end local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/crypto/provider/PBKDF2KeyImpl;

  public java.lang.String getFormat();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
         0: .line 239
            ldc "RAW"
            areturn
        end local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/crypto/provider/PBKDF2KeyImpl;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
         0: .line 247
            iconst_0
            istore 1 /* retval */
        start local 1 // int retval
         1: .line 248
            iconst_1
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 249
      StackMap locals: int int
      StackMap stack:
            iload 1 /* retval */
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBKDF2KeyImpl.key:[B
            iload 2 /* i */
            baload
            iload 2 /* i */
            imul
            iadd
            istore 1 /* retval */
         4: .line 248
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBKDF2KeyImpl.key:[B
            arraylength
            if_icmplt 3
        end local 2 // int i
         6: .line 251
            iload 1 /* retval */
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.PBKDF2KeyImpl.getAlgorithm:()Ljava/lang/String;
            getstatic java.util.Locale.ENGLISH:Ljava/util/Locale;
            invokevirtual java.lang.String.toLowerCase:(Ljava/util/Locale;)Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
            ixor
            dup
            istore 1 /* retval */
            ireturn
        end local 1 // int retval
        end local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lcom/sun/crypto/provider/PBKDF2KeyImpl;
            1    7     1  retval  I
            2    6     2       i  I

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
        start local 1 // java.lang.Object obj
         0: .line 255
            aload 1 /* obj */
            aload 0 /* this */
            if_acmpne 2
         1: .line 256
            iconst_1
            ireturn
         2: .line 258
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof javax.crypto.SecretKey
            ifne 4
         3: .line 259
            iconst_0
            ireturn
         4: .line 261
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast javax.crypto.SecretKey
            astore 2 /* that */
        start local 2 // javax.crypto.SecretKey that
         5: .line 263
            aload 2 /* that */
            invokeinterface javax.crypto.SecretKey.getAlgorithm:()Ljava/lang/String;
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.PBKDF2KeyImpl.getAlgorithm:()Ljava/lang/String;
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 7
         6: .line 264
            iconst_0
            ireturn
         7: .line 265
      StackMap locals: javax.crypto.SecretKey
      StackMap stack:
            aload 2 /* that */
            invokeinterface javax.crypto.SecretKey.getFormat:()Ljava/lang/String;
            ldc "RAW"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 9
         8: .line 266
            iconst_0
            ireturn
         9: .line 267
      StackMap locals:
      StackMap stack:
            aload 2 /* that */
            invokeinterface javax.crypto.SecretKey.getEncoded:()[B
            astore 3 /* thatEncoded */
        start local 3 // byte[] thatEncoded
        10: .line 268
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBKDF2KeyImpl.key:[B
            aload 3 /* thatEncoded */
            invokestatic java.security.MessageDigest.isEqual:([B[B)Z
            istore 4 /* ret */
        start local 4 // boolean ret
        11: .line 269
            aload 3 /* thatEncoded */
            iconst_0
            invokestatic java.util.Arrays.fill:([BB)V
        12: .line 270
            iload 4 /* ret */
            ireturn
        end local 4 // boolean ret
        end local 3 // byte[] thatEncoded
        end local 2 // javax.crypto.SecretKey that
        end local 1 // java.lang.Object obj
        end local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   13     0         this  Lcom/sun/crypto/provider/PBKDF2KeyImpl;
            0   13     1          obj  Ljava/lang/Object;
            5   13     2         that  Ljavax/crypto/SecretKey;
           10   13     3  thatEncoded  [B
           11   13     4          ret  Z
    MethodParameters:
      Name  Flags
      obj   

  private java.lang.Object writeReplace();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
         0: .line 282
            new java.security.KeyRep
            dup
            getstatic java.security.KeyRep$Type.SECRET:Ljava/security/KeyRep$Type;
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.PBKDF2KeyImpl.getAlgorithm:()Ljava/lang/String;
         1: .line 283
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.PBKDF2KeyImpl.getFormat:()Ljava/lang/String;
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.PBKDF2KeyImpl.getEncoded:()[B
         2: .line 282
            invokespecial java.security.KeyRep.<init>:(Ljava/security/KeyRep$Type;Ljava/lang/String;Ljava/lang/String;[B)V
            areturn
        end local 0 // com.sun.crypto.provider.PBKDF2KeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/crypto/provider/PBKDF2KeyImpl;
    Exceptions:
      throws java.io.ObjectStreamException

  private static void lambda$0(byte[], char[]);
    descriptor: ([B[C)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 131
            aload 0
            iconst_0
            invokestatic java.util.Arrays.fill:([BB)V
         1: .line 132
            aload 1
            iconst_0
            invokestatic java.util.Arrays.fill:([CC)V
         2: .line 133
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "PBKDF2KeyImpl.java"
NestMembers:
  com.sun.crypto.provider.PBKDF2KeyImpl$1
InnerClasses:
  com.sun.crypto.provider.PBKDF2KeyImpl$1
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public abstract Cleanable = java.lang.ref.Cleaner$Cleanable of java.lang.ref.Cleaner
  public final Type = java.security.KeyRep$Type of java.security.KeyRep