public class org.bouncycastle.crypto.util.ScryptConfig$Builder
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bouncycastle.crypto.util.ScryptConfig$Builder
  super_class: java.lang.Object
{
  private final int costParameter;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int blockSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int parallelizationParameter;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  public void <init>(int, int, int);
    descriptor: (III)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.bouncycastle.crypto.util.ScryptConfig$Builder this
        start local 1 // int costParameter
        start local 2 // int blockSize
        start local 3 // int parallelizationParameter
         0: .line 26
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 17
            aload 0 /* this */
            bipush 16
            putfield org.bouncycastle.crypto.util.ScryptConfig$Builder.saltLength:I
         2: .line 28
            iload 1 /* costParameter */
            iconst_1
            if_icmple 3
            iload 1 /* costParameter */
            invokestatic org.bouncycastle.crypto.util.ScryptConfig$Builder.isPowerOf2:(I)Z
            ifne 4
         3: .line 30
      StackMap locals: org.bouncycastle.crypto.util.ScryptConfig$Builder int int int
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Cost parameter N must be > 1 and a power of 2"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 33
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* costParameter */
            putfield org.bouncycastle.crypto.util.ScryptConfig$Builder.costParameter:I
         5: .line 34
            aload 0 /* this */
            iload 2 /* blockSize */
            putfield org.bouncycastle.crypto.util.ScryptConfig$Builder.blockSize:I
         6: .line 35
            aload 0 /* this */
            iload 3 /* parallelizationParameter */
            putfield org.bouncycastle.crypto.util.ScryptConfig$Builder.parallelizationParameter:I
         7: .line 36
            return
        end local 3 // int parallelizationParameter
        end local 2 // int blockSize
        end local 1 // int costParameter
        end local 0 // org.bouncycastle.crypto.util.ScryptConfig$Builder this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0    8     0                      this  Lorg/bouncycastle/crypto/util/ScryptConfig$Builder;
            0    8     1             costParameter  I
            0    8     2                 blockSize  I
            0    8     3  parallelizationParameter  I
    MethodParameters:
                          Name  Flags
      costParameter             
      blockSize                 
      parallelizationParameter  

  public org.bouncycastle.crypto.util.ScryptConfig$Builder withSaltLength(int);
    descriptor: (I)Lorg/bouncycastle/crypto/util/ScryptConfig$Builder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bouncycastle.crypto.util.ScryptConfig$Builder this
        start local 1 // int saltLength
         0: .line 46
            aload 0 /* this */
            iload 1 /* saltLength */
            putfield org.bouncycastle.crypto.util.ScryptConfig$Builder.saltLength:I
         1: .line 48
            aload 0 /* this */
            areturn
        end local 1 // int saltLength
        end local 0 // org.bouncycastle.crypto.util.ScryptConfig$Builder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/bouncycastle/crypto/util/ScryptConfig$Builder;
            0    2     1  saltLength  I
    MethodParameters:
            Name  Flags
      saltLength  

  public org.bouncycastle.crypto.util.ScryptConfig build();
    descriptor: ()Lorg/bouncycastle/crypto/util/ScryptConfig;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.util.ScryptConfig$Builder this
         0: .line 53
            new org.bouncycastle.crypto.util.ScryptConfig
            dup
            aload 0 /* this */
            invokespecial org.bouncycastle.crypto.util.ScryptConfig.<init>:(Lorg/bouncycastle/crypto/util/ScryptConfig$Builder;)V
            areturn
        end local 0 // org.bouncycastle.crypto.util.ScryptConfig$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/util/ScryptConfig$Builder;

  private static boolean isPowerOf2(int);
    descriptor: (I)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int x
         0: .line 59
            iload 0 /* x */
            iload 0 /* x */
            iconst_1
            isub
            iand
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // int x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     x  I
    MethodParameters:
      Name  Flags
      x     
}
SourceFile: "ScryptConfig.java"
NestHost: org.bouncycastle.crypto.util.ScryptConfig
InnerClasses:
  public Builder = org.bouncycastle.crypto.util.ScryptConfig$Builder of org.bouncycastle.crypto.util.ScryptConfig