public class org.bouncycastle.crypto.params.RSAKeyParameters extends org.bouncycastle.crypto.params.AsymmetricKeyParameter
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bouncycastle.crypto.params.RSAKeyParameters
  super_class: org.bouncycastle.crypto.params.AsymmetricKeyParameter
{
  private static final java.math.BigInteger ONE;
    descriptor: Ljava/math/BigInteger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private java.math.BigInteger modulus;
    descriptor: Ljava/math/BigInteger;
    flags: (0x0002) ACC_PRIVATE

  private java.math.BigInteger exponent;
    descriptor: Ljava/math/BigInteger;
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 8
            lconst_1
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
            putstatic org.bouncycastle.crypto.params.RSAKeyParameters.ONE:Ljava/math/BigInteger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(boolean, java.math.BigInteger, java.math.BigInteger);
    descriptor: (ZLjava/math/BigInteger;Ljava/math/BigInteger;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.bouncycastle.crypto.params.RSAKeyParameters this
        start local 1 // boolean isPrivate
        start local 2 // java.math.BigInteger modulus
        start local 3 // java.math.BigInteger exponent
         0: .line 18
            aload 0 /* this */
            iload 1 /* isPrivate */
            invokespecial org.bouncycastle.crypto.params.AsymmetricKeyParameter.<init>:(Z)V
         1: .line 20
            iload 1 /* isPrivate */
            ifne 4
         2: .line 22
            aload 3 /* exponent */
            invokevirtual java.math.BigInteger.intValue:()I
            iconst_1
            iand
            ifne 4
         3: .line 24
            new java.lang.IllegalArgumentException
            dup
            ldc "RSA publicExponent is even"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 28
      StackMap locals: org.bouncycastle.crypto.params.RSAKeyParameters int java.math.BigInteger java.math.BigInteger
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            aload 2 /* modulus */
            invokevirtual org.bouncycastle.crypto.params.RSAKeyParameters.validate:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            putfield org.bouncycastle.crypto.params.RSAKeyParameters.modulus:Ljava/math/BigInteger;
         5: .line 29
            aload 0 /* this */
            aload 3 /* exponent */
            putfield org.bouncycastle.crypto.params.RSAKeyParameters.exponent:Ljava/math/BigInteger;
         6: .line 30
            return
        end local 3 // java.math.BigInteger exponent
        end local 2 // java.math.BigInteger modulus
        end local 1 // boolean isPrivate
        end local 0 // org.bouncycastle.crypto.params.RSAKeyParameters this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/bouncycastle/crypto/params/RSAKeyParameters;
            0    7     1  isPrivate  Z
            0    7     2    modulus  Ljava/math/BigInteger;
            0    7     3   exponent  Ljava/math/BigInteger;
    MethodParameters:
           Name  Flags
      isPrivate  
      modulus    
      exponent   

  private java.math.BigInteger validate(java.math.BigInteger);
    descriptor: (Ljava/math/BigInteger;)Ljava/math/BigInteger;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.bouncycastle.crypto.params.RSAKeyParameters this
        start local 1 // java.math.BigInteger modulus
         0: .line 34
            aload 1 /* modulus */
            invokevirtual java.math.BigInteger.intValue:()I
            iconst_1
            iand
            ifne 2
         1: .line 36
            new java.lang.IllegalArgumentException
            dup
            ldc "RSA modulus is even"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 40
      StackMap locals:
      StackMap stack:
            aload 1 /* modulus */
            new java.math.BigInteger
            dup
            ldc "1451887755777639901511587432083070202422614380984889313550570919659315177065956574359078912654149167643992684236991305777574330831666511589145701059710742276692757882915756220901998212975756543223550490431013061082131040808010565293748926901442915057819663730454818359472391642885328171302299245556663073719855"
            invokespecial java.math.BigInteger.<init>:(Ljava/lang/String;)V
            invokevirtual java.math.BigInteger.gcd:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
         3: .line 44
            getstatic org.bouncycastle.crypto.params.RSAKeyParameters.ONE:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.equals:(Ljava/lang/Object;)Z
            ifne 5
         4: .line 46
            new java.lang.IllegalArgumentException
            dup
            ldc "RSA modulus has a small prime factor"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 51
      StackMap locals:
      StackMap stack:
            aload 1 /* modulus */
            areturn
        end local 1 // java.math.BigInteger modulus
        end local 0 // org.bouncycastle.crypto.params.RSAKeyParameters this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/bouncycastle/crypto/params/RSAKeyParameters;
            0    6     1  modulus  Ljava/math/BigInteger;
    MethodParameters:
         Name  Flags
      modulus  

  public java.math.BigInteger getModulus();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.params.RSAKeyParameters this
         0: .line 56
            aload 0 /* this */
            getfield org.bouncycastle.crypto.params.RSAKeyParameters.modulus:Ljava/math/BigInteger;
            areturn
        end local 0 // org.bouncycastle.crypto.params.RSAKeyParameters this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/params/RSAKeyParameters;

  public java.math.BigInteger getExponent();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.params.RSAKeyParameters this
         0: .line 61
            aload 0 /* this */
            getfield org.bouncycastle.crypto.params.RSAKeyParameters.exponent:Ljava/math/BigInteger;
            areturn
        end local 0 // org.bouncycastle.crypto.params.RSAKeyParameters this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/params/RSAKeyParameters;
}
SourceFile: "RSAKeyParameters.java"