public class javax.crypto.spec.RC2ParameterSpec implements java.security.spec.AlgorithmParameterSpec
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: javax.crypto.spec.RC2ParameterSpec
  super_class: java.lang.Object
{
  private byte[] iv;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

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

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.crypto.spec.RC2ParameterSpec this
        start local 1 // int effectiveKeyBits
         0: .line 56
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 47
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.spec.RC2ParameterSpec.iv:[B
         2: .line 57
            aload 0 /* this */
            iload 1 /* effectiveKeyBits */
            putfield javax.crypto.spec.RC2ParameterSpec.effectiveKeyBits:I
         3: .line 58
            return
        end local 1 // int effectiveKeyBits
        end local 0 // javax.crypto.spec.RC2ParameterSpec this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    4     0              this  Ljavax/crypto/spec/RC2ParameterSpec;
            0    4     1  effectiveKeyBits  I
    MethodParameters:
                  Name  Flags
      effectiveKeyBits  

  public void <init>(int, byte[]);
    descriptor: (I[B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // javax.crypto.spec.RC2ParameterSpec this
        start local 1 // int effectiveKeyBits
        start local 2 // byte[] iv
         0: .line 73
            aload 0 /* this */
            iload 1 /* effectiveKeyBits */
            aload 2 /* iv */
            iconst_0
            invokespecial javax.crypto.spec.RC2ParameterSpec.<init>:(I[BI)V
         1: .line 74
            return
        end local 2 // byte[] iv
        end local 1 // int effectiveKeyBits
        end local 0 // javax.crypto.spec.RC2ParameterSpec this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Ljavax/crypto/spec/RC2ParameterSpec;
            0    2     1  effectiveKeyBits  I
            0    2     2                iv  [B
    MethodParameters:
                  Name  Flags
      effectiveKeyBits  
      iv                

  public void <init>(int, byte[], int);
    descriptor: (I[BI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // javax.crypto.spec.RC2ParameterSpec this
        start local 1 // int effectiveKeyBits
        start local 2 // byte[] iv
        start local 3 // int offset
         0: .line 93
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 47
            aload 0 /* this */
            aconst_null
            putfield javax.crypto.spec.RC2ParameterSpec.iv:[B
         2: .line 94
            aload 0 /* this */
            iload 1 /* effectiveKeyBits */
            putfield javax.crypto.spec.RC2ParameterSpec.effectiveKeyBits:I
         3: .line 95
            aload 2 /* iv */
            ifnonnull 4
            new java.lang.IllegalArgumentException
            dup
            ldc "IV missing"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 96
      StackMap locals: javax.crypto.spec.RC2ParameterSpec int byte[] int
      StackMap stack:
            bipush 8
            istore 4 /* blockSize */
        start local 4 // int blockSize
         5: .line 97
            aload 2 /* iv */
            arraylength
            iload 3 /* offset */
            isub
            iload 4 /* blockSize */
            if_icmpge 7
         6: .line 98
            new java.lang.IllegalArgumentException
            dup
            ldc "IV too short"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 100
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* blockSize */
            newarray 8
            putfield javax.crypto.spec.RC2ParameterSpec.iv:[B
         8: .line 101
            aload 2 /* iv */
            iload 3 /* offset */
            aload 0 /* this */
            getfield javax.crypto.spec.RC2ParameterSpec.iv:[B
            iconst_0
            iload 4 /* blockSize */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 102
            return
        end local 4 // int blockSize
        end local 3 // int offset
        end local 2 // byte[] iv
        end local 1 // int effectiveKeyBits
        end local 0 // javax.crypto.spec.RC2ParameterSpec this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   10     0              this  Ljavax/crypto/spec/RC2ParameterSpec;
            0   10     1  effectiveKeyBits  I
            0   10     2                iv  [B
            0   10     3            offset  I
            5   10     4         blockSize  I
    MethodParameters:
                  Name  Flags
      effectiveKeyBits  
      iv                
      offset            

  public int getEffectiveKeyBits();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.crypto.spec.RC2ParameterSpec this
         0: .line 110
            aload 0 /* this */
            getfield javax.crypto.spec.RC2ParameterSpec.effectiveKeyBits:I
            ireturn
        end local 0 // javax.crypto.spec.RC2ParameterSpec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/crypto/spec/RC2ParameterSpec;

  public byte[] getIV();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.crypto.spec.RC2ParameterSpec this
         0: .line 120
            aload 0 /* this */
            getfield javax.crypto.spec.RC2ParameterSpec.iv:[B
            ifnonnull 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield javax.crypto.spec.RC2ParameterSpec.iv:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
      StackMap locals:
      StackMap stack: byte[]
         2: areturn
        end local 0 // javax.crypto.spec.RC2ParameterSpec this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavax/crypto/spec/RC2ParameterSpec;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // javax.crypto.spec.RC2ParameterSpec this
        start local 1 // java.lang.Object obj
         0: .line 135
            aload 1 /* obj */
            aload 0 /* this */
            if_acmpne 2
         1: .line 136
            iconst_1
            ireturn
         2: .line 138
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof javax.crypto.spec.RC2ParameterSpec
            ifne 4
         3: .line 139
            iconst_0
            ireturn
         4: .line 141
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast javax.crypto.spec.RC2ParameterSpec
            astore 2 /* other */
        start local 2 // javax.crypto.spec.RC2ParameterSpec other
         5: .line 143
            aload 0 /* this */
            getfield javax.crypto.spec.RC2ParameterSpec.effectiveKeyBits:I
            aload 2 /* other */
            getfield javax.crypto.spec.RC2ParameterSpec.effectiveKeyBits:I
            if_icmpne 8
         6: .line 144
            aload 0 /* this */
            getfield javax.crypto.spec.RC2ParameterSpec.iv:[B
            aload 2 /* other */
            getfield javax.crypto.spec.RC2ParameterSpec.iv:[B
            invokestatic java.util.Arrays.equals:([B[B)Z
            ifeq 8
         7: .line 143
            iconst_1
            ireturn
      StackMap locals: javax.crypto.spec.RC2ParameterSpec
      StackMap stack:
         8: iconst_0
            ireturn
        end local 2 // javax.crypto.spec.RC2ParameterSpec other
        end local 1 // java.lang.Object obj
        end local 0 // javax.crypto.spec.RC2ParameterSpec this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Ljavax/crypto/spec/RC2ParameterSpec;
            0    9     1    obj  Ljava/lang/Object;
            5    9     2  other  Ljavax/crypto/spec/RC2ParameterSpec;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // javax.crypto.spec.RC2ParameterSpec this
         0: .line 152
            iconst_0
            istore 1 /* retval */
        start local 1 // int retval
         1: .line 153
            aload 0 /* this */
            getfield javax.crypto.spec.RC2ParameterSpec.iv:[B
            ifnull 7
         2: .line 154
            iconst_1
            istore 2 /* i */
        start local 2 // int i
         3: goto 6
         4: .line 155
      StackMap locals: int int
      StackMap stack:
            iload 1 /* retval */
            aload 0 /* this */
            getfield javax.crypto.spec.RC2ParameterSpec.iv:[B
            iload 2 /* i */
            baload
            iload 2 /* i */
            imul
            iadd
            istore 1 /* retval */
         5: .line 154
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            aload 0 /* this */
            getfield javax.crypto.spec.RC2ParameterSpec.iv:[B
            arraylength
            if_icmplt 4
        end local 2 // int i
         7: .line 158
      StackMap locals:
      StackMap stack:
            iload 1 /* retval */
            aload 0 /* this */
            getfield javax.crypto.spec.RC2ParameterSpec.effectiveKeyBits:I
            iadd
            dup
            istore 1 /* retval */
            ireturn
        end local 1 // int retval
        end local 0 // javax.crypto.spec.RC2ParameterSpec this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Ljavax/crypto/spec/RC2ParameterSpec;
            1    8     1  retval  I
            3    7     2       i  I
}
SourceFile: "RC2ParameterSpec.java"