public class org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA extends org.bouncycastle.jce.provider.JDKKeyPairGenerator
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA
  super_class: org.bouncycastle.jce.provider.JDKKeyPairGenerator
{
  static final java.math.BigInteger defaultPublicExponent;
    descriptor: Ljava/math/BigInteger;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  static final int defaultTests;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 12

  org.bouncycastle.crypto.params.RSAKeyGenerationParameters param;
    descriptor: Lorg/bouncycastle/crypto/params/RSAKeyGenerationParameters;
    flags: (0x0000) 

  org.bouncycastle.crypto.generators.RSAKeyPairGenerator engine;
    descriptor: Lorg/bouncycastle/crypto/generators/RSAKeyPairGenerator;
    flags: (0x0000) 

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 65
            ldc 65537
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
            putstatic org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA.defaultPublicExponent:Ljava/math/BigInteger;
         1: .line 66
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=1, args_size=1
        start local 0 // org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA this
         0: .line 73
            aload 0 /* this */
            ldc "RSA"
            invokespecial org.bouncycastle.jce.provider.JDKKeyPairGenerator.<init>:(Ljava/lang/String;)V
         1: .line 75
            aload 0 /* this */
            new org.bouncycastle.crypto.generators.RSAKeyPairGenerator
            dup
            invokespecial org.bouncycastle.crypto.generators.RSAKeyPairGenerator.<init>:()V
            putfield org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA.engine:Lorg/bouncycastle/crypto/generators/RSAKeyPairGenerator;
         2: .line 76
            aload 0 /* this */
            new org.bouncycastle.crypto.params.RSAKeyGenerationParameters
            dup
            getstatic org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA.defaultPublicExponent:Ljava/math/BigInteger;
         3: .line 77
            new java.security.SecureRandom
            dup
            invokespecial java.security.SecureRandom.<init>:()V
            sipush 2048
            bipush 12
            invokespecial org.bouncycastle.crypto.params.RSAKeyGenerationParameters.<init>:(Ljava/math/BigInteger;Ljava/security/SecureRandom;II)V
         4: .line 76
            putfield org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA.param:Lorg/bouncycastle/crypto/params/RSAKeyGenerationParameters;
         5: .line 78
            aload 0 /* this */
            getfield org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA.engine:Lorg/bouncycastle/crypto/generators/RSAKeyPairGenerator;
            aload 0 /* this */
            getfield org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA.param:Lorg/bouncycastle/crypto/params/RSAKeyGenerationParameters;
            invokevirtual org.bouncycastle.crypto.generators.RSAKeyPairGenerator.init:(Lorg/bouncycastle/crypto/KeyGenerationParameters;)V
         6: .line 79
            return
        end local 0 // org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/bouncycastle/jce/provider/JDKKeyPairGenerator$RSA;

  public void initialize(int, java.security.SecureRandom);
    descriptor: (ILjava/security/SecureRandom;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=3, args_size=3
        start local 0 // org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA this
        start local 1 // int strength
        start local 2 // java.security.SecureRandom random
         0: .line 85
            aload 0 /* this */
            new org.bouncycastle.crypto.params.RSAKeyGenerationParameters
            dup
            getstatic org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA.defaultPublicExponent:Ljava/math/BigInteger;
         1: .line 86
            aload 2 /* random */
            iload 1 /* strength */
            bipush 12
            invokespecial org.bouncycastle.crypto.params.RSAKeyGenerationParameters.<init>:(Ljava/math/BigInteger;Ljava/security/SecureRandom;II)V
         2: .line 85
            putfield org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA.param:Lorg/bouncycastle/crypto/params/RSAKeyGenerationParameters;
         3: .line 88
            aload 0 /* this */
            getfield org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA.engine:Lorg/bouncycastle/crypto/generators/RSAKeyPairGenerator;
            aload 0 /* this */
            getfield org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA.param:Lorg/bouncycastle/crypto/params/RSAKeyGenerationParameters;
            invokevirtual org.bouncycastle.crypto.generators.RSAKeyPairGenerator.init:(Lorg/bouncycastle/crypto/KeyGenerationParameters;)V
         4: .line 89
            return
        end local 2 // java.security.SecureRandom random
        end local 1 // int strength
        end local 0 // org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/bouncycastle/jce/provider/JDKKeyPairGenerator$RSA;
            0    5     1  strength  I
            0    5     2    random  Ljava/security/SecureRandom;
    MethodParameters:
          Name  Flags
      strength  
      random    

  public void initialize(java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom);
    descriptor: (Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=3
        start local 0 // org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA this
        start local 1 // java.security.spec.AlgorithmParameterSpec params
        start local 2 // java.security.SecureRandom random
         0: .line 96
            aload 1 /* params */
            instanceof java.security.spec.RSAKeyGenParameterSpec
            ifne 2
         1: .line 98
            new java.security.InvalidAlgorithmParameterException
            dup
            ldc "parameter object not a RSAKeyGenParameterSpec"
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 100
      StackMap locals:
      StackMap stack:
            aload 1 /* params */
            checkcast java.security.spec.RSAKeyGenParameterSpec
            astore 3 /* rsaParams */
        start local 3 // java.security.spec.RSAKeyGenParameterSpec rsaParams
         3: .line 102
            aload 0 /* this */
            new org.bouncycastle.crypto.params.RSAKeyGenerationParameters
            dup
         4: .line 103
            aload 3 /* rsaParams */
            invokevirtual java.security.spec.RSAKeyGenParameterSpec.getPublicExponent:()Ljava/math/BigInteger;
         5: .line 104
            aload 2 /* random */
            aload 3 /* rsaParams */
            invokevirtual java.security.spec.RSAKeyGenParameterSpec.getKeysize:()I
            bipush 12
            invokespecial org.bouncycastle.crypto.params.RSAKeyGenerationParameters.<init>:(Ljava/math/BigInteger;Ljava/security/SecureRandom;II)V
         6: .line 102
            putfield org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA.param:Lorg/bouncycastle/crypto/params/RSAKeyGenerationParameters;
         7: .line 106
            aload 0 /* this */
            getfield org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA.engine:Lorg/bouncycastle/crypto/generators/RSAKeyPairGenerator;
            aload 0 /* this */
            getfield org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA.param:Lorg/bouncycastle/crypto/params/RSAKeyGenerationParameters;
            invokevirtual org.bouncycastle.crypto.generators.RSAKeyPairGenerator.init:(Lorg/bouncycastle/crypto/KeyGenerationParameters;)V
         8: .line 107
            return
        end local 3 // java.security.spec.RSAKeyGenParameterSpec rsaParams
        end local 2 // java.security.SecureRandom random
        end local 1 // java.security.spec.AlgorithmParameterSpec params
        end local 0 // org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lorg/bouncycastle/jce/provider/JDKKeyPairGenerator$RSA;
            0    9     1     params  Ljava/security/spec/AlgorithmParameterSpec;
            0    9     2     random  Ljava/security/SecureRandom;
            3    9     3  rsaParams  Ljava/security/spec/RSAKeyGenParameterSpec;
    Exceptions:
      throws java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      params  
      random  

  public java.security.KeyPair generateKeyPair();
    descriptor: ()Ljava/security/KeyPair;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=1
        start local 0 // org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA this
         0: .line 111
            aload 0 /* this */
            getfield org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA.engine:Lorg/bouncycastle/crypto/generators/RSAKeyPairGenerator;
            invokevirtual org.bouncycastle.crypto.generators.RSAKeyPairGenerator.generateKeyPair:()Lorg/bouncycastle/crypto/AsymmetricCipherKeyPair;
            astore 1 /* pair */
        start local 1 // org.bouncycastle.crypto.AsymmetricCipherKeyPair pair
         1: .line 112
            aload 1 /* pair */
            invokevirtual org.bouncycastle.crypto.AsymmetricCipherKeyPair.getPublic:()Lorg/bouncycastle/crypto/CipherParameters;
            checkcast org.bouncycastle.crypto.params.RSAKeyParameters
            astore 2 /* pub */
        start local 2 // org.bouncycastle.crypto.params.RSAKeyParameters pub
         2: .line 113
            aload 1 /* pair */
            invokevirtual org.bouncycastle.crypto.AsymmetricCipherKeyPair.getPrivate:()Lorg/bouncycastle/crypto/CipherParameters;
            checkcast org.bouncycastle.crypto.params.RSAPrivateCrtKeyParameters
            astore 3 /* priv */
        start local 3 // org.bouncycastle.crypto.params.RSAPrivateCrtKeyParameters priv
         3: .line 115
            new java.security.KeyPair
            dup
            new org.bouncycastle.jce.provider.JCERSAPublicKey
            dup
            aload 2 /* pub */
            invokespecial org.bouncycastle.jce.provider.JCERSAPublicKey.<init>:(Lorg/bouncycastle/crypto/params/RSAKeyParameters;)V
         4: .line 116
            new org.bouncycastle.jce.provider.JCERSAPrivateCrtKey
            dup
            aload 3 /* priv */
            invokespecial org.bouncycastle.jce.provider.JCERSAPrivateCrtKey.<init>:(Lorg/bouncycastle/crypto/params/RSAPrivateCrtKeyParameters;)V
         5: .line 115
            invokespecial java.security.KeyPair.<init>:(Ljava/security/PublicKey;Ljava/security/PrivateKey;)V
            areturn
        end local 3 // org.bouncycastle.crypto.params.RSAPrivateCrtKeyParameters priv
        end local 2 // org.bouncycastle.crypto.params.RSAKeyParameters pub
        end local 1 // org.bouncycastle.crypto.AsymmetricCipherKeyPair pair
        end local 0 // org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/bouncycastle/jce/provider/JDKKeyPairGenerator$RSA;
            1    6     1  pair  Lorg/bouncycastle/crypto/AsymmetricCipherKeyPair;
            2    6     2   pub  Lorg/bouncycastle/crypto/params/RSAKeyParameters;
            3    6     3  priv  Lorg/bouncycastle/crypto/params/RSAPrivateCrtKeyParameters;
}
SourceFile: "JDKKeyPairGenerator.java"
NestHost: org.bouncycastle.jce.provider.JDKKeyPairGenerator
InnerClasses:
  public RSA = org.bouncycastle.jce.provider.JDKKeyPairGenerator$RSA of org.bouncycastle.jce.provider.JDKKeyPairGenerator