public final class sun.security.rsa.RSAPrivateCrtKeyImpl extends sun.security.pkcs.PKCS8Key implements java.security.interfaces.RSAPrivateCrtKey
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: sun.security.rsa.RSAPrivateCrtKeyImpl
  super_class: sun.security.pkcs.PKCS8Key
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -1326088454257084918

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

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

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

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

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

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

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

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

  private transient sun.security.rsa.RSAUtil$KeyType type;
    descriptor: Lsun/security/rsa/RSAUtil$KeyType;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient java.security.spec.AlgorithmParameterSpec keyParams;
    descriptor: Ljava/security/spec/AlgorithmParameterSpec;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  public static java.security.interfaces.RSAPrivateKey newKey(byte[]);
    descriptor: ([B)Ljava/security/interfaces/RSAPrivateKey;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // byte[] encoded
         0: .line 82
            aload 0 /* encoded */
            ifnull 1
            aload 0 /* encoded */
            arraylength
            ifne 2
         1: .line 83
      StackMap locals:
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            ldc "Missing key encoding"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 85
      StackMap locals:
      StackMap stack:
            new sun.security.rsa.RSAPrivateCrtKeyImpl
            dup
            aload 0 /* encoded */
            invokespecial sun.security.rsa.RSAPrivateCrtKeyImpl.<init>:([B)V
            astore 1 /* key */
        start local 1 // sun.security.rsa.RSAPrivateCrtKeyImpl key
         3: .line 88
            aload 1 /* key */
            invokevirtual sun.security.rsa.RSAPrivateCrtKeyImpl.getPublicExponent:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.signum:()I
            ifeq 9
         4: .line 89
            aload 1 /* key */
            invokevirtual sun.security.rsa.RSAPrivateCrtKeyImpl.getPrimeExponentP:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.signum:()I
            ifeq 9
         5: .line 90
            aload 1 /* key */
            invokevirtual sun.security.rsa.RSAPrivateCrtKeyImpl.getPrimeExponentQ:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.signum:()I
            ifeq 9
         6: .line 91
            aload 1 /* key */
            invokevirtual sun.security.rsa.RSAPrivateCrtKeyImpl.getPrimeP:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.signum:()I
            ifeq 9
         7: .line 92
            aload 1 /* key */
            invokevirtual sun.security.rsa.RSAPrivateCrtKeyImpl.getPrimeQ:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.signum:()I
            ifeq 9
         8: .line 93
            aload 1 /* key */
            invokevirtual sun.security.rsa.RSAPrivateCrtKeyImpl.getCrtCoefficient:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.signum:()I
            ifne 14
         9: .line 94
      StackMap locals: sun.security.rsa.RSAPrivateCrtKeyImpl
      StackMap stack:
            new sun.security.rsa.RSAPrivateKeyImpl
            dup
        10: .line 95
            aload 1 /* key */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.type:Lsun/security/rsa/RSAUtil$KeyType;
            aload 1 /* key */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.keyParams:Ljava/security/spec/AlgorithmParameterSpec;
        11: .line 96
            aload 1 /* key */
            invokevirtual sun.security.rsa.RSAPrivateCrtKeyImpl.getModulus:()Ljava/math/BigInteger;
        12: .line 97
            aload 1 /* key */
            invokevirtual sun.security.rsa.RSAPrivateCrtKeyImpl.getPrivateExponent:()Ljava/math/BigInteger;
        13: .line 94
            invokespecial sun.security.rsa.RSAPrivateKeyImpl.<init>:(Lsun/security/rsa/RSAUtil$KeyType;Ljava/security/spec/AlgorithmParameterSpec;Ljava/math/BigInteger;Ljava/math/BigInteger;)V
            areturn
        14: .line 100
      StackMap locals:
      StackMap stack:
            aload 1 /* key */
            areturn
        end local 1 // sun.security.rsa.RSAPrivateCrtKeyImpl key
        end local 0 // byte[] encoded
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   15     0  encoded  [B
            3   15     1      key  Lsun/security/rsa/RSAPrivateCrtKeyImpl;
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
         Name  Flags
      encoded  

  public static java.security.interfaces.RSAPrivateKey newKey(sun.security.rsa.RSAUtil$KeyType, java.security.spec.AlgorithmParameterSpec, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger);
    descriptor: (Lsun/security/rsa/RSAUtil$KeyType;Ljava/security/spec/AlgorithmParameterSpec;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)Ljava/security/interfaces/RSAPrivateKey;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=12, locals=10, args_size=10
        start local 0 // sun.security.rsa.RSAUtil$KeyType type
        start local 1 // java.security.spec.AlgorithmParameterSpec params
        start local 2 // java.math.BigInteger n
        start local 3 // java.math.BigInteger e
        start local 4 // java.math.BigInteger d
        start local 5 // java.math.BigInteger p
        start local 6 // java.math.BigInteger q
        start local 7 // java.math.BigInteger pe
        start local 8 // java.math.BigInteger qe
        start local 9 // java.math.BigInteger coeff
         0: .line 115
            aload 3 /* e */
            invokevirtual java.math.BigInteger.signum:()I
            ifeq 3
            aload 5 /* p */
            invokevirtual java.math.BigInteger.signum:()I
            ifeq 3
         1: .line 116
            aload 6 /* q */
            invokevirtual java.math.BigInteger.signum:()I
            ifeq 3
            aload 7 /* pe */
            invokevirtual java.math.BigInteger.signum:()I
            ifeq 3
         2: .line 117
            aload 8 /* qe */
            invokevirtual java.math.BigInteger.signum:()I
            ifeq 3
            aload 9 /* coeff */
            invokevirtual java.math.BigInteger.signum:()I
            ifne 4
         3: .line 119
      StackMap locals:
      StackMap stack:
            new sun.security.rsa.RSAPrivateKeyImpl
            dup
            aload 0 /* type */
            aload 1 /* params */
            aload 2 /* n */
            aload 4 /* d */
            invokespecial sun.security.rsa.RSAPrivateKeyImpl.<init>:(Lsun/security/rsa/RSAUtil$KeyType;Ljava/security/spec/AlgorithmParameterSpec;Ljava/math/BigInteger;Ljava/math/BigInteger;)V
            areturn
         4: .line 121
      StackMap locals:
      StackMap stack:
            new sun.security.rsa.RSAPrivateCrtKeyImpl
            dup
            aload 0 /* type */
            aload 1 /* params */
            aload 2 /* n */
            aload 3 /* e */
            aload 4 /* d */
         5: .line 122
            aload 5 /* p */
            aload 6 /* q */
            aload 7 /* pe */
            aload 8 /* qe */
            aload 9 /* coeff */
         6: .line 121
            invokespecial sun.security.rsa.RSAPrivateCrtKeyImpl.<init>:(Lsun/security/rsa/RSAUtil$KeyType;Ljava/security/spec/AlgorithmParameterSpec;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
            areturn
        end local 9 // java.math.BigInteger coeff
        end local 8 // java.math.BigInteger qe
        end local 7 // java.math.BigInteger pe
        end local 6 // java.math.BigInteger q
        end local 5 // java.math.BigInteger p
        end local 4 // java.math.BigInteger d
        end local 3 // java.math.BigInteger e
        end local 2 // java.math.BigInteger n
        end local 1 // java.security.spec.AlgorithmParameterSpec params
        end local 0 // sun.security.rsa.RSAUtil$KeyType type
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    type  Lsun/security/rsa/RSAUtil$KeyType;
            0    7     1  params  Ljava/security/spec/AlgorithmParameterSpec;
            0    7     2       n  Ljava/math/BigInteger;
            0    7     3       e  Ljava/math/BigInteger;
            0    7     4       d  Ljava/math/BigInteger;
            0    7     5       p  Ljava/math/BigInteger;
            0    7     6       q  Ljava/math/BigInteger;
            0    7     7      pe  Ljava/math/BigInteger;
            0    7     8      qe  Ljava/math/BigInteger;
            0    7     9   coeff  Ljava/math/BigInteger;
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
        Name  Flags
      type    
      params  
      n       
      e       
      d       
      p       
      q       
      pe      
      qe      
      coeff   

  void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
        start local 1 // byte[] encoded
         0: .line 130
            aload 0 /* this */
            aload 1 /* encoded */
            invokespecial sun.security.pkcs.PKCS8Key.<init>:([B)V
         1: .line 131
            aload 0 /* this */
            invokevirtual sun.security.rsa.RSAPrivateCrtKeyImpl.parseKeyBits:()V
         2: .line 132
            aload 0 /* this */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.n:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.bitLength:()I
            aload 0 /* this */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.e:Ljava/math/BigInteger;
            invokestatic sun.security.rsa.RSAKeyFactory.checkRSAProviderKeyLengths:(ILjava/math/BigInteger;)V
         3: .line 135
            aload 0 /* this */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.algid:Lsun/security/x509/AlgorithmId;
            invokestatic sun.security.rsa.RSAUtil.getTypeAndParamSpec:(Lsun/security/x509/AlgorithmId;)[Ljava/lang/Object;
            astore 2 /* o */
        start local 2 // java.lang.Object[] o
         4: .line 136
            aload 0 /* this */
            aload 2 /* o */
            iconst_0
            aaload
            checkcast sun.security.rsa.RSAUtil$KeyType
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.type:Lsun/security/rsa/RSAUtil$KeyType;
         5: .line 137
            aload 0 /* this */
            aload 2 /* o */
            iconst_1
            aaload
            checkcast java.security.spec.AlgorithmParameterSpec
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.keyParams:Ljava/security/spec/AlgorithmParameterSpec;
        end local 2 // java.lang.Object[] o
         6: .line 138
            goto 9
      StackMap locals: sun.security.rsa.RSAPrivateCrtKeyImpl byte[]
      StackMap stack: java.security.ProviderException
         7: astore 2 /* e */
        start local 2 // java.security.ProviderException e
         8: .line 139
            new java.security.InvalidKeyException
            dup
            aload 2 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.security.ProviderException e
         9: .line 141
      StackMap locals:
      StackMap stack:
            return
        end local 1 // byte[] encoded
        end local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lsun/security/rsa/RSAPrivateCrtKeyImpl;
            0   10     1  encoded  [B
            4    6     2        o  [Ljava/lang/Object;
            8    9     2        e  Ljava/security/ProviderException;
      Exception table:
        from    to  target  type
           3     6       7  Class java.security.ProviderException
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
         Name  Flags
      encoded  

  void <init>(sun.security.rsa.RSAUtil$KeyType, java.security.spec.AlgorithmParameterSpec, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger, java.math.BigInteger);
    descriptor: (Lsun/security/rsa/RSAUtil$KeyType;Ljava/security/spec/AlgorithmParameterSpec;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
    flags: (0x0000) 
    Code:
      stack=4, locals=13, args_size=11
        start local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
        start local 1 // sun.security.rsa.RSAUtil$KeyType type
        start local 2 // java.security.spec.AlgorithmParameterSpec keyParams
        start local 3 // java.math.BigInteger n
        start local 4 // java.math.BigInteger e
        start local 5 // java.math.BigInteger d
        start local 6 // java.math.BigInteger p
        start local 7 // java.math.BigInteger q
        start local 8 // java.math.BigInteger pe
        start local 9 // java.math.BigInteger qe
        start local 10 // java.math.BigInteger coeff
         0: .line 147
            aload 0 /* this */
            invokespecial sun.security.pkcs.PKCS8Key.<init>:()V
         1: .line 151
            aload 3 /* n */
            invokevirtual java.math.BigInteger.bitLength:()I
            aload 4 /* e */
            invokestatic sun.security.rsa.RSAKeyFactory.checkRSAProviderKeyLengths:(ILjava/math/BigInteger;)V
         2: .line 153
            aload 0 /* this */
            aload 3 /* n */
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.n:Ljava/math/BigInteger;
         3: .line 154
            aload 0 /* this */
            aload 4 /* e */
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.e:Ljava/math/BigInteger;
         4: .line 155
            aload 0 /* this */
            aload 5 /* d */
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.d:Ljava/math/BigInteger;
         5: .line 156
            aload 0 /* this */
            aload 6 /* p */
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.p:Ljava/math/BigInteger;
         6: .line 157
            aload 0 /* this */
            aload 7 /* q */
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.q:Ljava/math/BigInteger;
         7: .line 158
            aload 0 /* this */
            aload 8 /* pe */
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.pe:Ljava/math/BigInteger;
         8: .line 159
            aload 0 /* this */
            aload 9 /* qe */
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.qe:Ljava/math/BigInteger;
         9: .line 160
            aload 0 /* this */
            aload 10 /* coeff */
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.coeff:Ljava/math/BigInteger;
        10: .line 164
            aload 0 /* this */
            aload 1 /* type */
            aload 2 /* keyParams */
            invokestatic sun.security.rsa.RSAUtil.createAlgorithmId:(Lsun/security/rsa/RSAUtil$KeyType;Ljava/security/spec/AlgorithmParameterSpec;)Lsun/security/x509/AlgorithmId;
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.algid:Lsun/security/x509/AlgorithmId;
        11: .line 165
            goto 14
      StackMap locals: sun.security.rsa.RSAPrivateCrtKeyImpl sun.security.rsa.RSAUtil$KeyType java.security.spec.AlgorithmParameterSpec 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.ProviderException
        12: astore 11 /* exc */
        start local 11 // java.security.ProviderException exc
        13: .line 166
            new java.security.InvalidKeyException
            dup
            aload 11 /* exc */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 11 // java.security.ProviderException exc
        14: .line 169
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* type */
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.type:Lsun/security/rsa/RSAUtil$KeyType;
        15: .line 170
            aload 0 /* this */
            aload 2 /* keyParams */
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.keyParams:Ljava/security/spec/AlgorithmParameterSpec;
        16: .line 174
            new sun.security.util.DerOutputStream
            dup
            invokespecial sun.security.util.DerOutputStream.<init>:()V
            astore 11 /* out */
        start local 11 // sun.security.util.DerOutputStream out
        17: .line 175
            aload 11 /* out */
            iconst_0
            invokevirtual sun.security.util.DerOutputStream.putInteger:(I)V
        18: .line 176
            aload 11 /* out */
            aload 3 /* n */
            invokevirtual sun.security.util.DerOutputStream.putInteger:(Ljava/math/BigInteger;)V
        19: .line 177
            aload 11 /* out */
            aload 4 /* e */
            invokevirtual sun.security.util.DerOutputStream.putInteger:(Ljava/math/BigInteger;)V
        20: .line 178
            aload 11 /* out */
            aload 5 /* d */
            invokevirtual sun.security.util.DerOutputStream.putInteger:(Ljava/math/BigInteger;)V
        21: .line 179
            aload 11 /* out */
            aload 6 /* p */
            invokevirtual sun.security.util.DerOutputStream.putInteger:(Ljava/math/BigInteger;)V
        22: .line 180
            aload 11 /* out */
            aload 7 /* q */
            invokevirtual sun.security.util.DerOutputStream.putInteger:(Ljava/math/BigInteger;)V
        23: .line 181
            aload 11 /* out */
            aload 8 /* pe */
            invokevirtual sun.security.util.DerOutputStream.putInteger:(Ljava/math/BigInteger;)V
        24: .line 182
            aload 11 /* out */
            aload 9 /* qe */
            invokevirtual sun.security.util.DerOutputStream.putInteger:(Ljava/math/BigInteger;)V
        25: .line 183
            aload 11 /* out */
            aload 10 /* coeff */
            invokevirtual sun.security.util.DerOutputStream.putInteger:(Ljava/math/BigInteger;)V
        26: .line 185
            new sun.security.util.DerValue
            dup
            bipush 48
            aload 11 /* out */
            invokevirtual sun.security.util.DerOutputStream.toByteArray:()[B
            invokespecial sun.security.util.DerValue.<init>:(B[B)V
        27: .line 184
            astore 12 /* val */
        start local 12 // sun.security.util.DerValue val
        28: .line 186
            aload 0 /* this */
            aload 12 /* val */
            invokevirtual sun.security.util.DerValue.toByteArray:()[B
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.key:[B
        end local 12 // sun.security.util.DerValue val
        end local 11 // sun.security.util.DerOutputStream out
        29: .line 187
            goto 32
      StackMap locals:
      StackMap stack: java.io.IOException
        30: astore 11 /* exc */
        start local 11 // java.io.IOException exc
        31: .line 189
            new java.security.InvalidKeyException
            dup
            aload 11 /* exc */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 11 // java.io.IOException exc
        32: .line 191
      StackMap locals:
      StackMap stack:
            return
        end local 10 // java.math.BigInteger coeff
        end local 9 // java.math.BigInteger qe
        end local 8 // java.math.BigInteger pe
        end local 7 // java.math.BigInteger q
        end local 6 // java.math.BigInteger p
        end local 5 // java.math.BigInteger d
        end local 4 // java.math.BigInteger e
        end local 3 // java.math.BigInteger n
        end local 2 // java.security.spec.AlgorithmParameterSpec keyParams
        end local 1 // sun.security.rsa.RSAUtil$KeyType type
        end local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   33     0       this  Lsun/security/rsa/RSAPrivateCrtKeyImpl;
            0   33     1       type  Lsun/security/rsa/RSAUtil$KeyType;
            0   33     2  keyParams  Ljava/security/spec/AlgorithmParameterSpec;
            0   33     3          n  Ljava/math/BigInteger;
            0   33     4          e  Ljava/math/BigInteger;
            0   33     5          d  Ljava/math/BigInteger;
            0   33     6          p  Ljava/math/BigInteger;
            0   33     7          q  Ljava/math/BigInteger;
            0   33     8         pe  Ljava/math/BigInteger;
            0   33     9         qe  Ljava/math/BigInteger;
            0   33    10      coeff  Ljava/math/BigInteger;
           13   14    11        exc  Ljava/security/ProviderException;
           17   29    11        out  Lsun/security/util/DerOutputStream;
           28   29    12        val  Lsun/security/util/DerValue;
           31   32    11        exc  Ljava/io/IOException;
      Exception table:
        from    to  target  type
          10    11      12  Class java.security.ProviderException
          16    29      30  Class java.io.IOException
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
           Name  Flags
      type       
      keyParams  
      n          
      e          
      d          
      p          
      q          
      pe         
      qe         
      coeff      

  public java.lang.String getAlgorithm();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
         0: .line 196
            aload 0 /* this */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.type:Lsun/security/rsa/RSAUtil$KeyType;
            getfield sun.security.rsa.RSAUtil$KeyType.keyAlgo:Ljava/lang/String;
            areturn
        end local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/rsa/RSAPrivateCrtKeyImpl;

  public java.math.BigInteger getModulus();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
         0: .line 202
            aload 0 /* this */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.n:Ljava/math/BigInteger;
            areturn
        end local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/rsa/RSAPrivateCrtKeyImpl;

  public java.math.BigInteger getPublicExponent();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
         0: .line 208
            aload 0 /* this */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.e:Ljava/math/BigInteger;
            areturn
        end local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/rsa/RSAPrivateCrtKeyImpl;

  public java.math.BigInteger getPrivateExponent();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
         0: .line 214
            aload 0 /* this */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.d:Ljava/math/BigInteger;
            areturn
        end local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/rsa/RSAPrivateCrtKeyImpl;

  public java.math.BigInteger getPrimeP();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
         0: .line 220
            aload 0 /* this */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.p:Ljava/math/BigInteger;
            areturn
        end local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/rsa/RSAPrivateCrtKeyImpl;

  public java.math.BigInteger getPrimeQ();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
         0: .line 226
            aload 0 /* this */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.q:Ljava/math/BigInteger;
            areturn
        end local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/rsa/RSAPrivateCrtKeyImpl;

  public java.math.BigInteger getPrimeExponentP();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
         0: .line 232
            aload 0 /* this */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.pe:Ljava/math/BigInteger;
            areturn
        end local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/rsa/RSAPrivateCrtKeyImpl;

  public java.math.BigInteger getPrimeExponentQ();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
         0: .line 238
            aload 0 /* this */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.qe:Ljava/math/BigInteger;
            areturn
        end local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/rsa/RSAPrivateCrtKeyImpl;

  public java.math.BigInteger getCrtCoefficient();
    descriptor: ()Ljava/math/BigInteger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
         0: .line 244
            aload 0 /* this */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.coeff:Ljava/math/BigInteger;
            areturn
        end local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/rsa/RSAPrivateCrtKeyImpl;

  public java.security.spec.AlgorithmParameterSpec getParams();
    descriptor: ()Ljava/security/spec/AlgorithmParameterSpec;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
         0: .line 250
            aload 0 /* this */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.keyParams:Ljava/security/spec/AlgorithmParameterSpec;
            areturn
        end local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/rsa/RSAPrivateCrtKeyImpl;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
         0: .line 256
            new java.lang.StringBuilder
            dup
            ldc "SunRsaSign "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.type:Lsun/security/rsa/RSAUtil$KeyType;
            getfield sun.security.rsa.RSAUtil$KeyType.keyAlgo:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " private CRT key, "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         1: .line 257
            aload 0 /* this */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.n:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.bitLength:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " bits"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "\n  params: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.keyParams:Ljava/security/spec/AlgorithmParameterSpec;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         2: .line 258
            ldc "\n  modulus: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.n:Ljava/math/BigInteger;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc "\n  private exponent: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.d:Ljava/math/BigInteger;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         3: .line 256
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/security/rsa/RSAPrivateCrtKeyImpl;

  private void parseKeyBits();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
         0: .line 263
            new sun.security.util.DerInputStream
            dup
            aload 0 /* this */
            getfield sun.security.rsa.RSAPrivateCrtKeyImpl.key:[B
            invokespecial sun.security.util.DerInputStream.<init>:([B)V
            astore 1 /* in */
        start local 1 // sun.security.util.DerInputStream in
         1: .line 264
            aload 1 /* in */
            invokevirtual sun.security.util.DerInputStream.getDerValue:()Lsun/security/util/DerValue;
            astore 2 /* derValue */
        start local 2 // sun.security.util.DerValue derValue
         2: .line 265
            aload 2 /* derValue */
            getfield sun.security.util.DerValue.tag:B
            bipush 48
            if_icmpeq 4
         3: .line 266
            new java.io.IOException
            dup
            ldc "Not a SEQUENCE"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 268
      StackMap locals: sun.security.util.DerInputStream sun.security.util.DerValue
      StackMap stack:
            aload 2 /* derValue */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            astore 3 /* data */
        start local 3 // sun.security.util.DerInputStream data
         5: .line 269
            aload 3 /* data */
            invokevirtual sun.security.util.DerInputStream.getInteger:()I
            istore 4 /* version */
        start local 4 // int version
         6: .line 270
            iload 4 /* version */
            ifeq 8
         7: .line 271
            new java.io.IOException
            dup
            ldc "Version must be 0"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 281
      StackMap locals: sun.security.util.DerInputStream int
      StackMap stack:
            aload 0 /* this */
            aload 3 /* data */
            invokevirtual sun.security.util.DerInputStream.getPositiveBigInteger:()Ljava/math/BigInteger;
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.n:Ljava/math/BigInteger;
         9: .line 282
            aload 0 /* this */
            aload 3 /* data */
            invokevirtual sun.security.util.DerInputStream.getPositiveBigInteger:()Ljava/math/BigInteger;
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.e:Ljava/math/BigInteger;
        10: .line 283
            aload 0 /* this */
            aload 3 /* data */
            invokevirtual sun.security.util.DerInputStream.getPositiveBigInteger:()Ljava/math/BigInteger;
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.d:Ljava/math/BigInteger;
        11: .line 284
            aload 0 /* this */
            aload 3 /* data */
            invokevirtual sun.security.util.DerInputStream.getPositiveBigInteger:()Ljava/math/BigInteger;
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.p:Ljava/math/BigInteger;
        12: .line 285
            aload 0 /* this */
            aload 3 /* data */
            invokevirtual sun.security.util.DerInputStream.getPositiveBigInteger:()Ljava/math/BigInteger;
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.q:Ljava/math/BigInteger;
        13: .line 286
            aload 0 /* this */
            aload 3 /* data */
            invokevirtual sun.security.util.DerInputStream.getPositiveBigInteger:()Ljava/math/BigInteger;
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.pe:Ljava/math/BigInteger;
        14: .line 287
            aload 0 /* this */
            aload 3 /* data */
            invokevirtual sun.security.util.DerInputStream.getPositiveBigInteger:()Ljava/math/BigInteger;
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.qe:Ljava/math/BigInteger;
        15: .line 288
            aload 0 /* this */
            aload 3 /* data */
            invokevirtual sun.security.util.DerInputStream.getPositiveBigInteger:()Ljava/math/BigInteger;
            putfield sun.security.rsa.RSAPrivateCrtKeyImpl.coeff:Ljava/math/BigInteger;
        16: .line 289
            aload 2 /* derValue */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.available:()I
            ifeq 20
        17: .line 290
            new java.io.IOException
            dup
            ldc "Extra data available"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // int version
        end local 3 // sun.security.util.DerInputStream data
        end local 2 // sun.security.util.DerValue derValue
        end local 1 // sun.security.util.DerInputStream in
        18: .line 292
      StackMap locals: sun.security.rsa.RSAPrivateCrtKeyImpl
      StackMap stack: java.io.IOException
            astore 1 /* e */
        start local 1 // java.io.IOException e
        19: .line 293
            new java.security.InvalidKeyException
            dup
            ldc "Invalid RSA private key"
            aload 1 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.io.IOException e
        20: .line 295
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.security.rsa.RSAPrivateCrtKeyImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   21     0      this  Lsun/security/rsa/RSAPrivateCrtKeyImpl;
            1   18     1        in  Lsun/security/util/DerInputStream;
            2   18     2  derValue  Lsun/security/util/DerValue;
            5   18     3      data  Lsun/security/util/DerInputStream;
            6   18     4   version  I
           19   20     1         e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0    18      18  Class java.io.IOException
    Exceptions:
      throws java.security.InvalidKeyException
}
SourceFile: "RSAPrivateCrtKeyImpl.java"
InnerClasses:
  public final KeyType = sun.security.rsa.RSAUtil$KeyType of sun.security.rsa.RSAUtil