public class javax.crypto.spec.PBEKeySpec implements java.security.spec.KeySpec
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: javax.crypto.spec.PBEKeySpec
  super_class: java.lang.Object
{
  private char[] password;
    descriptor: [C
    flags: (0x0002) ACC_PRIVATE

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

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

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

  public void <init>(char[]);
    descriptor: ([C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.crypto.spec.PBEKeySpec this
        start local 1 // char[] password
         0: .line 80
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 67
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.spec.PBEKeySpec.salt:[B
         2: .line 68
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.spec.PBEKeySpec.iterationCount:I
         3: .line 69
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.spec.PBEKeySpec.keyLength:I
         4: .line 81
            aload 1 /* password */
            ifnull 5
            aload 1 /* password */
            arraylength
            ifne 7
         5: .line 82
      StackMap locals: javax.crypto.spec.PBEKeySpec char[]
      StackMap stack:
            aload 0 /* this */
            iconst_0
            newarray 5
            putfield javax.crypto.spec.PBEKeySpec.password:[C
         6: .line 83
            goto 8
         7: .line 84
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* password */
            invokevirtual char[].clone:()Ljava/lang/Object;
            checkcast char[]
            putfield javax.crypto.spec.PBEKeySpec.password:[C
         8: .line 86
      StackMap locals:
      StackMap stack:
            return
        end local 1 // char[] password
        end local 0 // javax.crypto.spec.PBEKeySpec this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Ljavax/crypto/spec/PBEKeySpec;
            0    9     1  password  [C
    MethodParameters:
          Name  Flags
      password  

  public void <init>(char[], byte[], int, int);
    descriptor: ([C[BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // javax.crypto.spec.PBEKeySpec this
        start local 1 // char[] password
        start local 2 // byte[] salt
        start local 3 // int iterationCount
        start local 4 // int keyLength
         0: .line 108
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 67
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.spec.PBEKeySpec.salt:[B
         2: .line 68
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.spec.PBEKeySpec.iterationCount:I
         3: .line 69
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.spec.PBEKeySpec.keyLength:I
         4: .line 110
            aload 1 /* password */
            ifnull 5
            aload 1 /* password */
            arraylength
            ifne 7
         5: .line 111
      StackMap locals: javax.crypto.spec.PBEKeySpec char[] byte[] int int
      StackMap stack:
            aload 0 /* this */
            iconst_0
            newarray 5
            putfield javax.crypto.spec.PBEKeySpec.password:[C
         6: .line 112
            goto 8
         7: .line 113
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* password */
            invokevirtual char[].clone:()Ljava/lang/Object;
            checkcast char[]
            putfield javax.crypto.spec.PBEKeySpec.password:[C
         8: .line 115
      StackMap locals:
      StackMap stack:
            aload 2 /* salt */
            ifnonnull 10
         9: .line 116
            new java.lang.NullPointerException
            dup
            ldc "the salt parameter must be non-null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 118
      StackMap locals:
      StackMap stack:
            aload 2 /* salt */
            arraylength
            ifne 12
        11: .line 119
            new java.lang.IllegalArgumentException
            dup
            ldc "the salt parameter must not be empty"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 122
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* salt */
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            putfield javax.crypto.spec.PBEKeySpec.salt:[B
        13: .line 124
            iload 3 /* iterationCount */
            ifgt 15
        14: .line 125
            new java.lang.IllegalArgumentException
            dup
            ldc "invalid iterationCount value"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        15: .line 127
      StackMap locals:
      StackMap stack:
            iload 4 /* keyLength */
            ifgt 17
        16: .line 128
            new java.lang.IllegalArgumentException
            dup
            ldc "invalid keyLength value"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        17: .line 130
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* iterationCount */
            putfield javax.crypto.spec.PBEKeySpec.iterationCount:I
        18: .line 131
            aload 0 /* this */
            iload 4 /* keyLength */
            putfield javax.crypto.spec.PBEKeySpec.keyLength:I
        19: .line 132
            return
        end local 4 // int keyLength
        end local 3 // int iterationCount
        end local 2 // byte[] salt
        end local 1 // char[] password
        end local 0 // javax.crypto.spec.PBEKeySpec this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   20     0            this  Ljavax/crypto/spec/PBEKeySpec;
            0   20     1        password  [C
            0   20     2            salt  [B
            0   20     3  iterationCount  I
            0   20     4       keyLength  I
    MethodParameters:
                Name  Flags
      password        
      salt            
      iterationCount  
      keyLength       

  public void <init>(char[], byte[], int);
    descriptor: ([C[BI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // javax.crypto.spec.PBEKeySpec this
        start local 1 // char[] password
        start local 2 // byte[] salt
        start local 3 // int iterationCount
         0: .line 151
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 67
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.spec.PBEKeySpec.salt:[B
         2: .line 68
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.spec.PBEKeySpec.iterationCount:I
         3: .line 69
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.spec.PBEKeySpec.keyLength:I
         4: .line 152
            aload 1 /* password */
            ifnull 5
            aload 1 /* password */
            arraylength
            ifne 7
         5: .line 153
      StackMap locals: javax.crypto.spec.PBEKeySpec char[] byte[] int
      StackMap stack:
            aload 0 /* this */
            iconst_0
            newarray 5
            putfield javax.crypto.spec.PBEKeySpec.password:[C
         6: .line 154
            goto 8
         7: .line 155
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* password */
            invokevirtual char[].clone:()Ljava/lang/Object;
            checkcast char[]
            putfield javax.crypto.spec.PBEKeySpec.password:[C
         8: .line 157
      StackMap locals:
      StackMap stack:
            aload 2 /* salt */
            ifnonnull 10
         9: .line 158
            new java.lang.NullPointerException
            dup
            ldc "the salt parameter must be non-null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 160
      StackMap locals:
      StackMap stack:
            aload 2 /* salt */
            arraylength
            ifne 12
        11: .line 161
            new java.lang.IllegalArgumentException
            dup
            ldc "the salt parameter must not be empty"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 164
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* salt */
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            putfield javax.crypto.spec.PBEKeySpec.salt:[B
        13: .line 166
            iload 3 /* iterationCount */
            ifgt 15
        14: .line 167
            new java.lang.IllegalArgumentException
            dup
            ldc "invalid iterationCount value"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        15: .line 169
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* iterationCount */
            putfield javax.crypto.spec.PBEKeySpec.iterationCount:I
        16: .line 170
            return
        end local 3 // int iterationCount
        end local 2 // byte[] salt
        end local 1 // char[] password
        end local 0 // javax.crypto.spec.PBEKeySpec this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   17     0            this  Ljavax/crypto/spec/PBEKeySpec;
            0   17     1        password  [C
            0   17     2            salt  [B
            0   17     3  iterationCount  I
    MethodParameters:
                Name  Flags
      password        
      salt            
      iterationCount  

  public final void clearPassword();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javax.crypto.spec.PBEKeySpec this
         0: .line 177
            aload 0 /* this */
            getfield javax.crypto.spec.PBEKeySpec.password:[C
            ifnull 3
         1: .line 178
            aload 0 /* this */
            getfield javax.crypto.spec.PBEKeySpec.password:[C
            bipush 32
            invokestatic java.util.Arrays.fill:([CC)V
         2: .line 179
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.spec.PBEKeySpec.password:[C
         3: .line 181
      StackMap locals:
      StackMap stack:
            return
        end local 0 // javax.crypto.spec.PBEKeySpec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavax/crypto/spec/PBEKeySpec;

  public final char[] getPassword();
    descriptor: ()[C
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javax.crypto.spec.PBEKeySpec this
         0: .line 195
            aload 0 /* this */
            getfield javax.crypto.spec.PBEKeySpec.password:[C
            ifnonnull 2
         1: .line 196
            new java.lang.IllegalStateException
            dup
            ldc "password has been cleared"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 198
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.spec.PBEKeySpec.password:[C
            invokevirtual char[].clone:()Ljava/lang/Object;
            checkcast char[]
            areturn
        end local 0 // javax.crypto.spec.PBEKeySpec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavax/crypto/spec/PBEKeySpec;

  public final byte[] getSalt();
    descriptor: ()[B
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.crypto.spec.PBEKeySpec this
         0: .line 211
            aload 0 /* this */
            getfield javax.crypto.spec.PBEKeySpec.salt:[B
            ifnull 2
         1: .line 212
            aload 0 /* this */
            getfield javax.crypto.spec.PBEKeySpec.salt:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            areturn
         2: .line 214
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // javax.crypto.spec.PBEKeySpec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavax/crypto/spec/PBEKeySpec;

  public final int getIterationCount();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.crypto.spec.PBEKeySpec this
         0: .line 224
            aload 0 /* this */
            getfield javax.crypto.spec.PBEKeySpec.iterationCount:I
            ireturn
        end local 0 // javax.crypto.spec.PBEKeySpec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/crypto/spec/PBEKeySpec;

  public final int getKeyLength();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.crypto.spec.PBEKeySpec this
         0: .line 237
            aload 0 /* this */
            getfield javax.crypto.spec.PBEKeySpec.keyLength:I
            ireturn
        end local 0 // javax.crypto.spec.PBEKeySpec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/crypto/spec/PBEKeySpec;
}
SourceFile: "PBEKeySpec.java"