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

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

  private java.lang.String type;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  void <init>(javax.crypto.spec.PBEKeySpec, java.lang.String);
    descriptor: (Ljavax/crypto/spec/PBEKeySpec;Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // com.sun.crypto.provider.PBEKey this
        start local 1 // javax.crypto.spec.PBEKeySpec keySpec
        start local 2 // java.lang.String keytype
         0: .line 57
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 58
            aload 1 /* keySpec */
            invokevirtual javax.crypto.spec.PBEKeySpec.getPassword:()[C
            astore 3 /* passwd */
        start local 3 // char[] passwd
         2: .line 59
            aload 3 /* passwd */
            ifnonnull 4
         3: .line 61
            iconst_0
            newarray 5
            astore 3 /* passwd */
         4: .line 64
      StackMap locals: com.sun.crypto.provider.PBEKey javax.crypto.spec.PBEKeySpec java.lang.String char[]
      StackMap stack:
            aload 3 /* passwd */
            arraylength
            iconst_1
            if_icmpne 5
            aload 3 /* passwd */
            iconst_0
            caload
            ifeq 11
         5: .line 65
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         6: goto 10
         7: .line 66
      StackMap locals: int
      StackMap stack:
            aload 3 /* passwd */
            iload 4 /* i */
            caload
            bipush 32
            if_icmplt 8
            aload 3 /* passwd */
            iload 4 /* i */
            caload
            bipush 126
            if_icmple 9
         8: .line 67
      StackMap locals:
      StackMap stack:
            new java.security.spec.InvalidKeySpecException
            dup
            ldc "Password is not ASCII"
            invokespecial java.security.spec.InvalidKeySpecException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 65
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 4 /* i */
            aload 3 /* passwd */
            arraylength
            if_icmplt 7
        end local 4 // int i
        11: .line 71
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* passwd */
            arraylength
            newarray 8
            putfield com.sun.crypto.provider.PBEKey.key:[B
        12: .line 72
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        13: goto 16
        14: .line 73
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBEKey.key:[B
            iload 4 /* i */
            aload 3 /* passwd */
            iload 4 /* i */
            caload
            bipush 127
            iand
            i2b
            bastore
        15: .line 72
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 4 /* i */
            aload 3 /* passwd */
            arraylength
            if_icmplt 14
        end local 4 // int i
        17: .line 74
            aload 3 /* passwd */
            bipush 32
            invokestatic java.util.Arrays.fill:([CC)V
        18: .line 75
            aload 0 /* this */
            aload 2 /* keytype */
            putfield com.sun.crypto.provider.PBEKey.type:Ljava/lang/String;
        19: .line 78
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBEKey.key:[B
            astore 4 /* k */
        start local 4 // byte[] k
        20: .line 79
            invokestatic jdk.internal.ref.CleanerFactory.cleaner:()Ljava/lang/ref/Cleaner;
            aload 0 /* this */
        21: .line 80
            aload 4 /* k */
            invokedynamic run([B)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/PBEKey.lambda$0([B)V (6)
                  ()V
        22: .line 79
            invokevirtual java.lang.ref.Cleaner.register:(Ljava/lang/Object;Ljava/lang/Runnable;)Ljava/lang/ref/Cleaner$Cleanable;
            pop
        23: .line 81
            return
        end local 4 // byte[] k
        end local 3 // char[] passwd
        end local 2 // java.lang.String keytype
        end local 1 // javax.crypto.spec.PBEKeySpec keySpec
        end local 0 // com.sun.crypto.provider.PBEKey this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   24     0     this  Lcom/sun/crypto/provider/PBEKey;
            0   24     1  keySpec  Ljavax/crypto/spec/PBEKeySpec;
            0   24     2  keytype  Ljava/lang/String;
            2   24     3   passwd  [C
            6   11     4        i  I
           13   17     4        i  I
           20   24     4        k  [B
    Exceptions:
      throws java.security.spec.InvalidKeySpecException
    MethodParameters:
         Name  Flags
      keySpec  
      keytype  

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

  public java.lang.String getAlgorithm();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.PBEKey this
         0: .line 92
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBEKey.type:Ljava/lang/String;
            areturn
        end local 0 // com.sun.crypto.provider.PBEKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/crypto/provider/PBEKey;

  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.PBEKey this
         0: .line 96
            ldc "RAW"
            areturn
        end local 0 // com.sun.crypto.provider.PBEKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/crypto/provider/PBEKey;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.sun.crypto.provider.PBEKey this
         0: .line 104
            iconst_0
            istore 1 /* retval */
        start local 1 // int retval
         1: .line 105
            iconst_1
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 106
      StackMap locals: int int
      StackMap stack:
            iload 1 /* retval */
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBEKey.key:[B
            iload 2 /* i */
            baload
            iload 2 /* i */
            imul
            iadd
            istore 1 /* retval */
         4: .line 105
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBEKey.key:[B
            arraylength
            if_icmplt 3
        end local 2 // int i
         6: .line 108
            iload 1 /* retval */
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.PBEKey.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.PBEKey this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lcom/sun/crypto/provider/PBEKey;
            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.PBEKey this
        start local 1 // java.lang.Object obj
         0: .line 112
            aload 1 /* obj */
            aload 0 /* this */
            if_acmpne 2
         1: .line 113
            iconst_1
            ireturn
         2: .line 115
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof javax.crypto.SecretKey
            ifne 4
         3: .line 116
            iconst_0
            ireturn
         4: .line 118
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast javax.crypto.SecretKey
            astore 2 /* that */
        start local 2 // javax.crypto.SecretKey that
         5: .line 120
            aload 2 /* that */
            invokeinterface javax.crypto.SecretKey.getAlgorithm:()Ljava/lang/String;
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBEKey.type:Ljava/lang/String;
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 7
         6: .line 121
            iconst_0
            ireturn
         7: .line 123
      StackMap locals: javax.crypto.SecretKey
      StackMap stack:
            aload 2 /* that */
            invokeinterface javax.crypto.SecretKey.getEncoded:()[B
            astore 3 /* thatEncoded */
        start local 3 // byte[] thatEncoded
         8: .line 124
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBEKey.key:[B
            aload 3 /* thatEncoded */
            invokestatic java.security.MessageDigest.isEqual:([B[B)Z
            istore 4 /* ret */
        start local 4 // boolean ret
         9: .line 125
            aload 3 /* thatEncoded */
            iconst_0
            invokestatic java.util.Arrays.fill:([BB)V
        10: .line 126
            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.PBEKey this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   11     0         this  Lcom/sun/crypto/provider/PBEKey;
            0   11     1          obj  Ljava/lang/Object;
            5   11     2         that  Ljavax/crypto/SecretKey;
            8   11     3  thatEncoded  [B
            9   11     4          ret  Z
    MethodParameters:
      Name  Flags
      obj   

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.crypto.provider.PBEKey this
        start local 1 // java.io.ObjectInputStream s
         0: .line 136
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.defaultReadObject:()V
         1: .line 137
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.crypto.provider.PBEKey.key:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            putfield com.sun.crypto.provider.PBEKey.key:[B
         2: .line 138
            return
        end local 1 // java.io.ObjectInputStream s
        end local 0 // com.sun.crypto.provider.PBEKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/crypto/provider/PBEKey;
            0    3     1     s  Ljava/io/ObjectInputStream;
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      s     

  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.PBEKey this
         0: .line 150
            new java.security.KeyRep
            dup
            getstatic java.security.KeyRep$Type.SECRET:Ljava/security/KeyRep$Type;
         1: .line 151
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.PBEKey.getAlgorithm:()Ljava/lang/String;
         2: .line 152
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.PBEKey.getFormat:()Ljava/lang/String;
         3: .line 153
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.PBEKey.getEncoded:()[B
         4: .line 150
            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.PBEKey this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/crypto/provider/PBEKey;
    Exceptions:
      throws java.io.ObjectStreamException

  private static void lambda$0(byte[]);
    descriptor: ([B)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
         0: .line 80
            aload 0
            iconst_0
            invokestatic java.util.Arrays.fill:([BB)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "PBEKey.java"
InnerClasses:
  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