public class com.jcraft.jsch.jce.KeyPairGenRSA implements com.jcraft.jsch.KeyPairGenRSA
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.jcraft.jsch.jce.KeyPairGenRSA
  super_class: java.lang.Object
{
  byte[] d;
    descriptor: [B
    flags: (0x0000) 

  byte[] e;
    descriptor: [B
    flags: (0x0000) 

  byte[] n;
    descriptor: [B
    flags: (0x0000) 

  byte[] c;
    descriptor: [B
    flags: (0x0000) 

  byte[] ep;
    descriptor: [B
    flags: (0x0000) 

  byte[] eq;
    descriptor: [B
    flags: (0x0000) 

  byte[] p;
    descriptor: [B
    flags: (0x0000) 

  byte[] q;
    descriptor: [B
    flags: (0x0000) 

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
         0: .line 35
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/jce/KeyPairGenRSA;

  public void init(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
        start local 1 // int key_size
         0: .line 47
            ldc "RSA"
            invokestatic java.security.KeyPairGenerator.getInstance:(Ljava/lang/String;)Ljava/security/KeyPairGenerator;
            astore 2 /* keyGen */
        start local 2 // java.security.KeyPairGenerator keyGen
         1: .line 48
            aload 2 /* keyGen */
            iload 1 /* key_size */
            new java.security.SecureRandom
            dup
            invokespecial java.security.SecureRandom.<init>:()V
            invokevirtual java.security.KeyPairGenerator.initialize:(ILjava/security/SecureRandom;)V
         2: .line 49
            aload 2 /* keyGen */
            invokevirtual java.security.KeyPairGenerator.generateKeyPair:()Ljava/security/KeyPair;
            astore 3 /* pair */
        start local 3 // java.security.KeyPair pair
         3: .line 51
            aload 3 /* pair */
            invokevirtual java.security.KeyPair.getPublic:()Ljava/security/PublicKey;
            astore 4 /* pubKey */
        start local 4 // java.security.PublicKey pubKey
         4: .line 52
            aload 3 /* pair */
            invokevirtual java.security.KeyPair.getPrivate:()Ljava/security/PrivateKey;
            astore 5 /* prvKey */
        start local 5 // java.security.PrivateKey prvKey
         5: .line 54
            aload 0 /* this */
            aload 5 /* prvKey */
            checkcast java.security.interfaces.RSAPrivateKey
            invokeinterface java.security.interfaces.RSAPrivateKey.getPrivateExponent:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.toByteArray:()[B
            putfield com.jcraft.jsch.jce.KeyPairGenRSA.d:[B
         6: .line 55
            aload 0 /* this */
            aload 4 /* pubKey */
            checkcast java.security.interfaces.RSAPublicKey
            invokeinterface java.security.interfaces.RSAPublicKey.getPublicExponent:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.toByteArray:()[B
            putfield com.jcraft.jsch.jce.KeyPairGenRSA.e:[B
         7: .line 56
            aload 0 /* this */
            aload 5 /* prvKey */
            checkcast java.security.interfaces.RSAPrivateKey
            invokeinterface java.security.interfaces.RSAPrivateKey.getModulus:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.toByteArray:()[B
            putfield com.jcraft.jsch.jce.KeyPairGenRSA.n:[B
         8: .line 58
            aload 0 /* this */
            aload 5 /* prvKey */
            checkcast java.security.interfaces.RSAPrivateCrtKey
            invokeinterface java.security.interfaces.RSAPrivateCrtKey.getCrtCoefficient:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.toByteArray:()[B
            putfield com.jcraft.jsch.jce.KeyPairGenRSA.c:[B
         9: .line 59
            aload 0 /* this */
            aload 5 /* prvKey */
            checkcast java.security.interfaces.RSAPrivateCrtKey
            invokeinterface java.security.interfaces.RSAPrivateCrtKey.getPrimeExponentP:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.toByteArray:()[B
            putfield com.jcraft.jsch.jce.KeyPairGenRSA.ep:[B
        10: .line 60
            aload 0 /* this */
            aload 5 /* prvKey */
            checkcast java.security.interfaces.RSAPrivateCrtKey
            invokeinterface java.security.interfaces.RSAPrivateCrtKey.getPrimeExponentQ:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.toByteArray:()[B
            putfield com.jcraft.jsch.jce.KeyPairGenRSA.eq:[B
        11: .line 61
            aload 0 /* this */
            aload 5 /* prvKey */
            checkcast java.security.interfaces.RSAPrivateCrtKey
            invokeinterface java.security.interfaces.RSAPrivateCrtKey.getPrimeP:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.toByteArray:()[B
            putfield com.jcraft.jsch.jce.KeyPairGenRSA.p:[B
        12: .line 62
            aload 0 /* this */
            aload 5 /* prvKey */
            checkcast java.security.interfaces.RSAPrivateCrtKey
            invokeinterface java.security.interfaces.RSAPrivateCrtKey.getPrimeQ:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.toByteArray:()[B
            putfield com.jcraft.jsch.jce.KeyPairGenRSA.q:[B
        13: .line 63
            return
        end local 5 // java.security.PrivateKey prvKey
        end local 4 // java.security.PublicKey pubKey
        end local 3 // java.security.KeyPair pair
        end local 2 // java.security.KeyPairGenerator keyGen
        end local 1 // int key_size
        end local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lcom/jcraft/jsch/jce/KeyPairGenRSA;
            0   14     1  key_size  I
            1   14     2    keyGen  Ljava/security/KeyPairGenerator;
            3   14     3      pair  Ljava/security/KeyPair;
            4   14     4    pubKey  Ljava/security/PublicKey;
            5   14     5    prvKey  Ljava/security/PrivateKey;
    Exceptions:
      throws java.lang.Exception
    MethodParameters:
          Name  Flags
      key_size  

  public byte[] getD();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
         0: .line 64
            aload 0 /* this */
            getfield com.jcraft.jsch.jce.KeyPairGenRSA.d:[B
            areturn
        end local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/jce/KeyPairGenRSA;

  public byte[] getE();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
         0: .line 65
            aload 0 /* this */
            getfield com.jcraft.jsch.jce.KeyPairGenRSA.e:[B
            areturn
        end local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/jce/KeyPairGenRSA;

  public byte[] getN();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
         0: .line 66
            aload 0 /* this */
            getfield com.jcraft.jsch.jce.KeyPairGenRSA.n:[B
            areturn
        end local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/jce/KeyPairGenRSA;

  public byte[] getC();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
         0: .line 67
            aload 0 /* this */
            getfield com.jcraft.jsch.jce.KeyPairGenRSA.c:[B
            areturn
        end local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/jce/KeyPairGenRSA;

  public byte[] getEP();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
         0: .line 68
            aload 0 /* this */
            getfield com.jcraft.jsch.jce.KeyPairGenRSA.ep:[B
            areturn
        end local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/jce/KeyPairGenRSA;

  public byte[] getEQ();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
         0: .line 69
            aload 0 /* this */
            getfield com.jcraft.jsch.jce.KeyPairGenRSA.eq:[B
            areturn
        end local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/jce/KeyPairGenRSA;

  public byte[] getP();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
         0: .line 70
            aload 0 /* this */
            getfield com.jcraft.jsch.jce.KeyPairGenRSA.p:[B
            areturn
        end local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/jce/KeyPairGenRSA;

  public byte[] getQ();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
         0: .line 71
            aload 0 /* this */
            getfield com.jcraft.jsch.jce.KeyPairGenRSA.q:[B
            areturn
        end local 0 // com.jcraft.jsch.jce.KeyPairGenRSA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/jcraft/jsch/jce/KeyPairGenRSA;
}
SourceFile: "KeyPairGenRSA.java"