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 79
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 66
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.spec.PBEKeySpec.salt:[B
         2: .line 67
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.spec.PBEKeySpec.iterationCount:I
         3: .line 68
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.spec.PBEKeySpec.keyLength:I
         4: .line 80
            aload 1 /* password */
            ifnull 5
            aload 1 /* password */
            arraylength
            ifne 7
         5: .line 81
      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 82
            goto 8
         7: .line 83
      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 85
      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 107
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 66
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.spec.PBEKeySpec.salt:[B
         2: .line 67
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.spec.PBEKeySpec.iterationCount:I
         3: .line 68
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.spec.PBEKeySpec.keyLength:I
         4: .line 109
            aload 1 /* password */
            ifnull 5
            aload 1 /* password */
            arraylength
            ifne 7
         5: .line 110
      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 111
            goto 8
         7: .line 112
      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 114
      StackMap locals:
      StackMap stack:
            aload 2 /* salt */
            ifnonnull 10
         9: .line 115
            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 117
      StackMap locals:
      StackMap stack:
            aload 2 /* salt */
            arraylength
            ifne 12
        11: .line 118
            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 121
      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 123
            iload 3 /* iterationCount */
            ifgt 15
        14: .line 124
            new java.lang.IllegalArgumentException
            dup
            ldc "invalid iterationCount value"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        15: .line 126
      StackMap locals:
      StackMap stack:
            iload 4 /* keyLength */
            ifgt 17
        16: .line 127
            new java.lang.IllegalArgumentException
            dup
            ldc "invalid keyLength value"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        17: .line 129
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* iterationCount */
            putfield javax.crypto.spec.PBEKeySpec.iterationCount:I
        18: .line 130
            aload 0 /* this */
            iload 4 /* keyLength */
            putfield javax.crypto.spec.PBEKeySpec.keyLength:I
        19: .line 131
            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 150
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 66
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.spec.PBEKeySpec.salt:[B
         2: .line 67
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.spec.PBEKeySpec.iterationCount:I
         3: .line 68
            aload 0 /* this */
            iconst_0
            putfield javax.crypto.spec.PBEKeySpec.keyLength:I
         4: .line 151
            aload 1 /* password */
            ifnull 5
            aload 1 /* password */
            arraylength
            ifne 7
         5: .line 152
      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 153
            goto 8
         7: .line 154
      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 156
      StackMap locals:
      StackMap stack:
            aload 2 /* salt */
            ifnonnull 10
         9: .line 157
            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 159
      StackMap locals:
      StackMap stack:
            aload 2 /* salt */
            arraylength
            ifne 12
        11: .line 160
            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 163
      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 165
            iload 3 /* iterationCount */
            ifgt 15
        14: .line 166
            new java.lang.IllegalArgumentException
            dup
            ldc "invalid iterationCount value"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        15: .line 168
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* iterationCount */
            putfield javax.crypto.spec.PBEKeySpec.iterationCount:I
        16: .line 169
            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=3, locals=2, args_size=1
        start local 0 // javax.crypto.spec.PBEKeySpec this
         0: .line 176
            aload 0 /* this */
            getfield javax.crypto.spec.PBEKeySpec.password:[C
            ifnull 7
         1: .line 177
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         2: goto 5
         3: .line 178
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield javax.crypto.spec.PBEKeySpec.password:[C
            iload 1 /* i */
            bipush 32
            castore
         4: .line 177
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 1 /* i */
            aload 0 /* this */
            getfield javax.crypto.spec.PBEKeySpec.password:[C
            arraylength
            if_icmplt 3
        end local 1 // int i
         6: .line 180
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.spec.PBEKeySpec.password:[C
         7: .line 182
      StackMap locals:
      StackMap stack:
            return
        end local 0 // javax.crypto.spec.PBEKeySpec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljavax/crypto/spec/PBEKeySpec;
            2    6     1     i  I

  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 196
            aload 0 /* this */
            getfield javax.crypto.spec.PBEKeySpec.password:[C
            ifnonnull 2
         1: .line 197
            new java.lang.IllegalStateException
            dup
            ldc "password has been cleared"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 199
      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 212
            aload 0 /* this */
            getfield javax.crypto.spec.PBEKeySpec.salt:[B
            ifnull 2
         1: .line 213
            aload 0 /* this */
            getfield javax.crypto.spec.PBEKeySpec.salt:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            areturn
         2: .line 215
      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 225
            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 238
            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"