public abstract class sun.security.rsa.RSAKeyPairGenerator extends java.security.KeyPairGeneratorSpi
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: sun.security.rsa.RSAKeyPairGenerator
  super_class: java.security.KeyPairGeneratorSpi
{
  private java.math.BigInteger publicExponent;
    descriptor: Ljava/math/BigInteger;
    flags: (0x0002) ACC_PRIVATE

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

  private final sun.security.rsa.RSAUtil$KeyType type;
    descriptor: Lsun/security/rsa/RSAUtil$KeyType;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private sun.security.x509.AlgorithmId rsaId;
    descriptor: Lsun/security/x509/AlgorithmId;
    flags: (0x0002) ACC_PRIVATE

  private java.security.SecureRandom random;
    descriptor: Ljava/security/SecureRandom;
    flags: (0x0002) ACC_PRIVATE

  void <init>(sun.security.rsa.RSAUtil$KeyType, int);
    descriptor: (Lsun/security/rsa/RSAUtil$KeyType;I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.security.rsa.RSAKeyPairGenerator this
        start local 1 // sun.security.rsa.RSAUtil$KeyType type
        start local 2 // int defKeySize
         0: .line 63
            aload 0 /* this */
            invokespecial java.security.KeyPairGeneratorSpi.<init>:()V
         1: .line 64
            aload 0 /* this */
            aload 1 /* type */
            putfield sun.security.rsa.RSAKeyPairGenerator.type:Lsun/security/rsa/RSAUtil$KeyType;
         2: .line 66
            aload 0 /* this */
            iload 2 /* defKeySize */
            aconst_null
            invokevirtual sun.security.rsa.RSAKeyPairGenerator.initialize:(ILjava/security/SecureRandom;)V
         3: .line 67
            return
        end local 2 // int defKeySize
        end local 1 // sun.security.rsa.RSAUtil$KeyType type
        end local 0 // sun.security.rsa.RSAKeyPairGenerator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lsun/security/rsa/RSAKeyPairGenerator;
            0    4     1        type  Lsun/security/rsa/RSAUtil$KeyType;
            0    4     2  defKeySize  I
    MethodParameters:
            Name  Flags
      type        
      defKeySize  

  public void initialize(int, java.security.SecureRandom);
    descriptor: (ILjava/security/SecureRandom;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // sun.security.rsa.RSAKeyPairGenerator this
        start local 1 // int keySize
        start local 2 // java.security.SecureRandom random
         0: .line 72
            aload 0 /* this */
            new java.security.spec.RSAKeyGenParameterSpec
            dup
            iload 1 /* keySize */
         1: .line 73
            getstatic java.security.spec.RSAKeyGenParameterSpec.F4:Ljava/math/BigInteger;
            invokespecial java.security.spec.RSAKeyGenParameterSpec.<init>:(ILjava/math/BigInteger;)V
            aload 2 /* random */
         2: .line 72
            invokevirtual sun.security.rsa.RSAKeyPairGenerator.initialize:(Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
         3: .line 74
            goto 6
      StackMap locals:
      StackMap stack: java.security.InvalidAlgorithmParameterException
         4: astore 3 /* iape */
        start local 3 // java.security.InvalidAlgorithmParameterException iape
         5: .line 75
            new java.security.InvalidParameterException
            dup
            aload 3 /* iape */
            invokevirtual java.security.InvalidAlgorithmParameterException.getMessage:()Ljava/lang/String;
            invokespecial java.security.InvalidParameterException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // java.security.InvalidAlgorithmParameterException iape
         6: .line 77
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.security.SecureRandom random
        end local 1 // int keySize
        end local 0 // sun.security.rsa.RSAKeyPairGenerator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lsun/security/rsa/RSAKeyPairGenerator;
            0    7     1  keySize  I
            0    7     2   random  Ljava/security/SecureRandom;
            5    6     3     iape  Ljava/security/InvalidAlgorithmParameterException;
      Exception table:
        from    to  target  type
           0     3       4  Class java.security.InvalidAlgorithmParameterException
    MethodParameters:
         Name  Flags
      keySize  
      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=4, locals=8, args_size=3
        start local 0 // sun.security.rsa.RSAKeyPairGenerator this
        start local 1 // java.security.spec.AlgorithmParameterSpec params
        start local 2 // java.security.SecureRandom random
         0: .line 82
            aload 1 /* params */
            instanceof java.security.spec.RSAKeyGenParameterSpec
            ifne 4
         1: .line 83
            new java.security.InvalidAlgorithmParameterException
            dup
         2: .line 84
            ldc "Params must be instance of RSAKeyGenParameterSpec"
         3: .line 83
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 87
      StackMap locals:
      StackMap stack:
            aload 1 /* params */
            checkcast java.security.spec.RSAKeyGenParameterSpec
            astore 3 /* rsaSpec */
        start local 3 // java.security.spec.RSAKeyGenParameterSpec rsaSpec
         5: .line 88
            aload 3 /* rsaSpec */
            invokevirtual java.security.spec.RSAKeyGenParameterSpec.getKeysize:()I
            istore 4 /* tmpKeySize */
        start local 4 // int tmpKeySize
         6: .line 89
            aload 3 /* rsaSpec */
            invokevirtual java.security.spec.RSAKeyGenParameterSpec.getPublicExponent:()Ljava/math/BigInteger;
            astore 5 /* tmpPublicExponent */
        start local 5 // java.math.BigInteger tmpPublicExponent
         7: .line 90
            aload 3 /* rsaSpec */
            invokevirtual java.security.spec.RSAKeyGenParameterSpec.getKeyParams:()Ljava/security/spec/AlgorithmParameterSpec;
            astore 6 /* tmpParams */
        start local 6 // java.security.spec.AlgorithmParameterSpec tmpParams
         8: .line 92
            aload 5 /* tmpPublicExponent */
            ifnonnull 11
         9: .line 93
            getstatic java.security.spec.RSAKeyGenParameterSpec.F4:Ljava/math/BigInteger;
            astore 5 /* tmpPublicExponent */
        10: .line 94
            goto 19
        11: .line 95
      StackMap locals: sun.security.rsa.RSAKeyPairGenerator java.security.spec.AlgorithmParameterSpec java.security.SecureRandom java.security.spec.RSAKeyGenParameterSpec int java.math.BigInteger java.security.spec.AlgorithmParameterSpec
      StackMap stack:
            aload 5 /* tmpPublicExponent */
            getstatic java.security.spec.RSAKeyGenParameterSpec.F0:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.compareTo:(Ljava/math/BigInteger;)I
            ifge 15
        12: .line 96
            new java.security.InvalidAlgorithmParameterException
            dup
        13: .line 97
            ldc "Public exponent must be 3 or larger"
        14: .line 96
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        15: .line 99
      StackMap locals:
      StackMap stack:
            aload 5 /* tmpPublicExponent */
            invokevirtual java.math.BigInteger.bitLength:()I
            iload 4 /* tmpKeySize */
            if_icmple 19
        16: .line 100
            new java.security.InvalidAlgorithmParameterException
            dup
        17: .line 101
            ldc "Public exponent must be smaller than key size"
        18: .line 100
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        19: .line 107
      StackMap locals:
      StackMap stack:
            iload 4 /* tmpKeySize */
            aload 5 /* tmpPublicExponent */
        20: .line 108
            sipush 512
            ldc 65536
        21: .line 107
            invokestatic sun.security.rsa.RSAKeyFactory.checkKeyLengths:(ILjava/math/BigInteger;II)V
        22: .line 109
            goto 27
      StackMap locals:
      StackMap stack: java.security.InvalidKeyException
        23: astore 7 /* e */
        start local 7 // java.security.InvalidKeyException e
        24: .line 110
            new java.security.InvalidAlgorithmParameterException
            dup
        25: .line 111
            ldc "Invalid key sizes"
            aload 7 /* e */
        26: .line 110
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 7 // java.security.InvalidKeyException e
        27: .line 115
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.rsa.RSAKeyPairGenerator.type:Lsun/security/rsa/RSAUtil$KeyType;
            aload 6 /* tmpParams */
            invokestatic sun.security.rsa.RSAUtil.createAlgorithmId:(Lsun/security/rsa/RSAUtil$KeyType;Ljava/security/spec/AlgorithmParameterSpec;)Lsun/security/x509/AlgorithmId;
            putfield sun.security.rsa.RSAKeyPairGenerator.rsaId:Lsun/security/x509/AlgorithmId;
        28: .line 116
            goto 33
      StackMap locals:
      StackMap stack: java.security.ProviderException
        29: astore 7 /* e */
        start local 7 // java.security.ProviderException e
        30: .line 117
            new java.security.InvalidAlgorithmParameterException
            dup
        31: .line 118
            ldc "Invalid key parameters"
            aload 7 /* e */
        32: .line 117
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 7 // java.security.ProviderException e
        33: .line 121
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* tmpKeySize */
            putfield sun.security.rsa.RSAKeyPairGenerator.keySize:I
        34: .line 122
            aload 0 /* this */
            aload 5 /* tmpPublicExponent */
            putfield sun.security.rsa.RSAKeyPairGenerator.publicExponent:Ljava/math/BigInteger;
        35: .line 123
            aload 0 /* this */
            aload 2 /* random */
            putfield sun.security.rsa.RSAKeyPairGenerator.random:Ljava/security/SecureRandom;
        36: .line 124
            return
        end local 6 // java.security.spec.AlgorithmParameterSpec tmpParams
        end local 5 // java.math.BigInteger tmpPublicExponent
        end local 4 // int tmpKeySize
        end local 3 // java.security.spec.RSAKeyGenParameterSpec rsaSpec
        end local 2 // java.security.SecureRandom random
        end local 1 // java.security.spec.AlgorithmParameterSpec params
        end local 0 // sun.security.rsa.RSAKeyPairGenerator this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   37     0               this  Lsun/security/rsa/RSAKeyPairGenerator;
            0   37     1             params  Ljava/security/spec/AlgorithmParameterSpec;
            0   37     2             random  Ljava/security/SecureRandom;
            5   37     3            rsaSpec  Ljava/security/spec/RSAKeyGenParameterSpec;
            6   37     4         tmpKeySize  I
            7   37     5  tmpPublicExponent  Ljava/math/BigInteger;
            8   37     6          tmpParams  Ljava/security/spec/AlgorithmParameterSpec;
           24   27     7                  e  Ljava/security/InvalidKeyException;
           30   33     7                  e  Ljava/security/ProviderException;
      Exception table:
        from    to  target  type
          19    22      23  Class java.security.InvalidKeyException
          27    28      29  Class java.security.ProviderException
    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=11, locals=16, args_size=1
        start local 0 // sun.security.rsa.RSAKeyPairGenerator this
         0: .line 129
            aload 0 /* this */
            getfield sun.security.rsa.RSAKeyPairGenerator.keySize:I
            iconst_1
            iadd
            iconst_1
            ishr
            istore 1 /* lp */
        start local 1 // int lp
         1: .line 130
            aload 0 /* this */
            getfield sun.security.rsa.RSAKeyPairGenerator.keySize:I
            iload 1 /* lp */
            isub
            istore 2 /* lq */
        start local 2 // int lq
         2: .line 131
            aload 0 /* this */
            getfield sun.security.rsa.RSAKeyPairGenerator.random:Ljava/security/SecureRandom;
            ifnonnull 4
         3: .line 132
            aload 0 /* this */
            invokestatic sun.security.jca.JCAUtil.getSecureRandom:()Ljava/security/SecureRandom;
            putfield sun.security.rsa.RSAKeyPairGenerator.random:Ljava/security/SecureRandom;
         4: .line 134
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.rsa.RSAKeyPairGenerator.publicExponent:Ljava/math/BigInteger;
            astore 3 /* e */
        start local 3 // java.math.BigInteger e
         5: .line 137
      StackMap locals: java.math.BigInteger
      StackMap stack:
            iload 1 /* lp */
            aload 0 /* this */
            getfield sun.security.rsa.RSAKeyPairGenerator.random:Ljava/security/SecureRandom;
            invokestatic java.math.BigInteger.probablePrime:(ILjava/util/Random;)Ljava/math/BigInteger;
            astore 4 /* p */
        start local 4 // java.math.BigInteger p
         6: .line 140
      StackMap locals: java.math.BigInteger
      StackMap stack:
            iload 2 /* lq */
            aload 0 /* this */
            getfield sun.security.rsa.RSAKeyPairGenerator.random:Ljava/security/SecureRandom;
            invokestatic java.math.BigInteger.probablePrime:(ILjava/util/Random;)Ljava/math/BigInteger;
            astore 5 /* q */
        start local 5 // java.math.BigInteger q
         7: .line 142
            aload 4 /* p */
            aload 5 /* q */
            invokevirtual java.math.BigInteger.compareTo:(Ljava/math/BigInteger;)I
            ifge 11
         8: .line 143
            aload 4 /* p */
            astore 7 /* tmp */
        start local 7 // java.math.BigInteger tmp
         9: .line 144
            aload 5 /* q */
            astore 4 /* p */
        10: .line 145
            aload 7 /* tmp */
            astore 5 /* q */
        end local 7 // java.math.BigInteger tmp
        11: .line 148
      StackMap locals: java.math.BigInteger
      StackMap stack:
            aload 4 /* p */
            aload 5 /* q */
            invokevirtual java.math.BigInteger.multiply:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            astore 6 /* n */
        start local 6 // java.math.BigInteger n
        12: .line 151
            aload 6 /* n */
            invokevirtual java.math.BigInteger.bitLength:()I
            aload 0 /* this */
            getfield sun.security.rsa.RSAKeyPairGenerator.keySize:I
        13: .line 139
            if_icmplt 6
        14: .line 155
            aload 4 /* p */
            getstatic java.math.BigInteger.ONE:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.subtract:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            astore 7 /* p1 */
        start local 7 // java.math.BigInteger p1
        15: .line 156
            aload 5 /* q */
            getstatic java.math.BigInteger.ONE:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.subtract:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            astore 8 /* q1 */
        start local 8 // java.math.BigInteger q1
        16: .line 157
            aload 7 /* p1 */
            aload 8 /* q1 */
            invokevirtual java.math.BigInteger.multiply:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            astore 9 /* phi */
        start local 9 // java.math.BigInteger phi
        17: .line 160
            aload 3 /* e */
            aload 9 /* phi */
            invokevirtual java.math.BigInteger.gcd:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            getstatic java.math.BigInteger.ONE:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.equals:(Ljava/lang/Object;)Z
            ifne 19
        18: .line 161
            goto 5
        19: .line 165
      StackMap locals: sun.security.rsa.RSAKeyPairGenerator int int java.math.BigInteger java.math.BigInteger java.math.BigInteger java.math.BigInteger java.math.BigInteger java.math.BigInteger java.math.BigInteger
      StackMap stack:
            aload 3 /* e */
            aload 9 /* phi */
            invokevirtual java.math.BigInteger.modInverse:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            astore 10 /* d */
        start local 10 // java.math.BigInteger d
        20: .line 168
            aload 10 /* d */
            aload 7 /* p1 */
            invokevirtual java.math.BigInteger.mod:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            astore 11 /* pe */
        start local 11 // java.math.BigInteger pe
        21: .line 170
            aload 10 /* d */
            aload 8 /* q1 */
            invokevirtual java.math.BigInteger.mod:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            astore 12 /* qe */
        start local 12 // java.math.BigInteger qe
        22: .line 173
            aload 5 /* q */
            aload 4 /* p */
            invokevirtual java.math.BigInteger.modInverse:(Ljava/math/BigInteger;)Ljava/math/BigInteger;
            astore 13 /* coeff */
        start local 13 // java.math.BigInteger coeff
        23: .line 176
            new sun.security.rsa.RSAPublicKeyImpl
            dup
            aload 0 /* this */
            getfield sun.security.rsa.RSAKeyPairGenerator.rsaId:Lsun/security/x509/AlgorithmId;
            aload 6 /* n */
            aload 3 /* e */
            invokespecial sun.security.rsa.RSAPublicKeyImpl.<init>:(Lsun/security/x509/AlgorithmId;Ljava/math/BigInteger;Ljava/math/BigInteger;)V
            astore 14 /* publicKey */
        start local 14 // java.security.PublicKey publicKey
        24: .line 177
            new sun.security.rsa.RSAPrivateCrtKeyImpl
            dup
        25: .line 178
            aload 0 /* this */
            getfield sun.security.rsa.RSAKeyPairGenerator.rsaId:Lsun/security/x509/AlgorithmId;
            aload 6 /* n */
            aload 3 /* e */
            aload 10 /* d */
            aload 4 /* p */
            aload 5 /* q */
            aload 11 /* pe */
            aload 12 /* qe */
            aload 13 /* coeff */
        26: .line 177
            invokespecial sun.security.rsa.RSAPrivateCrtKeyImpl.<init>:(Lsun/security/x509/AlgorithmId;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)V
            astore 15 /* privateKey */
        start local 15 // java.security.PrivateKey privateKey
        27: .line 179
            new java.security.KeyPair
            dup
            aload 14 /* publicKey */
            aload 15 /* privateKey */
            invokespecial java.security.KeyPair.<init>:(Ljava/security/PublicKey;Ljava/security/PrivateKey;)V
        28: areturn
        end local 15 // java.security.PrivateKey privateKey
        end local 14 // java.security.PublicKey publicKey
        29: .line 180
      StackMap locals: sun.security.rsa.RSAKeyPairGenerator int int java.math.BigInteger java.math.BigInteger java.math.BigInteger java.math.BigInteger java.math.BigInteger java.math.BigInteger java.math.BigInteger java.math.BigInteger java.math.BigInteger java.math.BigInteger java.math.BigInteger
      StackMap stack: java.security.InvalidKeyException
            astore 14 /* exc */
        start local 14 // java.security.InvalidKeyException exc
        30: .line 183
            new java.lang.RuntimeException
            dup
            aload 14 /* exc */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 14 // java.security.InvalidKeyException exc
        end local 13 // java.math.BigInteger coeff
        end local 12 // java.math.BigInteger qe
        end local 11 // java.math.BigInteger pe
        end local 10 // java.math.BigInteger d
        end local 9 // java.math.BigInteger phi
        end local 8 // java.math.BigInteger q1
        end local 7 // java.math.BigInteger p1
        end local 6 // java.math.BigInteger n
        end local 5 // java.math.BigInteger q
        end local 4 // java.math.BigInteger p
        end local 3 // java.math.BigInteger e
        end local 2 // int lq
        end local 1 // int lp
        end local 0 // sun.security.rsa.RSAKeyPairGenerator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   31     0        this  Lsun/security/rsa/RSAKeyPairGenerator;
            1   31     1          lp  I
            2   31     2          lq  I
            5   31     3           e  Ljava/math/BigInteger;
            6   31     4           p  Ljava/math/BigInteger;
            7   31     5           q  Ljava/math/BigInteger;
           12   31     6           n  Ljava/math/BigInteger;
            9   11     7         tmp  Ljava/math/BigInteger;
           15   31     7          p1  Ljava/math/BigInteger;
           16   31     8          q1  Ljava/math/BigInteger;
           17   31     9         phi  Ljava/math/BigInteger;
           20   31    10           d  Ljava/math/BigInteger;
           21   31    11          pe  Ljava/math/BigInteger;
           22   31    12          qe  Ljava/math/BigInteger;
           23   31    13       coeff  Ljava/math/BigInteger;
           24   29    14   publicKey  Ljava/security/PublicKey;
           27   29    15  privateKey  Ljava/security/PrivateKey;
           30   31    14         exc  Ljava/security/InvalidKeyException;
      Exception table:
        from    to  target  type
          23    28      29  Class java.security.InvalidKeyException
}
SourceFile: "RSAKeyPairGenerator.java"
NestMembers:
  sun.security.rsa.RSAKeyPairGenerator$Legacy  sun.security.rsa.RSAKeyPairGenerator$PSS
InnerClasses:
  public final Legacy = sun.security.rsa.RSAKeyPairGenerator$Legacy of sun.security.rsa.RSAKeyPairGenerator
  public final PSS = sun.security.rsa.RSAKeyPairGenerator$PSS of sun.security.rsa.RSAKeyPairGenerator
  public final KeyType = sun.security.rsa.RSAUtil$KeyType of sun.security.rsa.RSAUtil