public final class sun.security.rsa.RSAPublicKeyImpl extends sun.security.x509.X509Key implements java.security.interfaces.RSAPublicKey
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: sun.security.rsa.RSAPublicKeyImpl
  super_class: sun.security.x509.X509Key
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2644735423591199609

  private static final java.math.BigInteger THREE;
    descriptor: Ljava/math/BigInteger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  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 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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 56
            ldc 3
            invokestatic java.math.BigInteger.valueOf:(J)Ljava/math/BigInteger;
            putstatic sun.security.rsa.RSAPublicKeyImpl.THREE:Ljava/math/BigInteger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static java.security.interfaces.RSAPublicKey newKey(sun.security.rsa.RSAUtil$KeyType, java.lang.String, byte[]);
    descriptor: (Lsun/security/rsa/RSAUtil$KeyType;Ljava/lang/String;[B)Ljava/security/interfaces/RSAPublicKey;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=7, locals=6, args_size=3
        start local 0 // sun.security.rsa.RSAUtil$KeyType type
        start local 1 // java.lang.String format
        start local 2 // byte[] encoded
         0: .line 76
            aload 1 /* format */
            dup
            astore 4
            invokevirtual java.lang.String.hashCode:()I
            lookupswitch { // 2
          -1933294247: 1
             82692712: 2
              default: 11
          }
      StackMap locals: sun.security.rsa.RSAUtil$KeyType java.lang.String byte[] top java.lang.String
      StackMap stack:
         1: aload 4
            ldc "PKCS#1"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 6
            goto 11
      StackMap locals:
      StackMap stack:
         2: aload 4
            ldc "X.509"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 3
            goto 11
         3: .line 78
      StackMap locals:
      StackMap stack:
            new sun.security.rsa.RSAPublicKeyImpl
            dup
            aload 2 /* encoded */
            invokespecial sun.security.rsa.RSAPublicKeyImpl.<init>:([B)V
            astore 3 /* key */
        start local 3 // java.security.interfaces.RSAPublicKey key
         4: .line 79
            aload 3 /* key */
            aload 0 /* type */
            getfield sun.security.rsa.RSAUtil$KeyType.keyAlgo:Ljava/lang/String;
            invokestatic sun.security.rsa.RSAKeyFactory.checkKeyAlgo:(Ljava/security/Key;Ljava/lang/String;)V
         5: .line 80
            goto 14
        end local 3 // java.security.interfaces.RSAPublicKey key
         6: .line 83
      StackMap locals:
      StackMap stack:
            aload 2 /* encoded */
            invokestatic sun.security.rsa.RSAPublicKeyImpl.parseASN1:([B)[Ljava/math/BigInteger;
            astore 5 /* comps */
        start local 5 // java.math.BigInteger[] comps
         7: .line 84
            new sun.security.rsa.RSAPublicKeyImpl
            dup
            aload 0 /* type */
            aconst_null
            aload 5 /* comps */
            iconst_0
            aaload
            aload 5 /* comps */
            iconst_1
            aaload
            invokespecial sun.security.rsa.RSAPublicKeyImpl.<init>:(Lsun/security/rsa/RSAUtil$KeyType;Ljava/security/spec/AlgorithmParameterSpec;Ljava/math/BigInteger;Ljava/math/BigInteger;)V
            astore 3 /* key */
        end local 5 // java.math.BigInteger[] comps
        start local 3 // java.security.interfaces.RSAPublicKey key
         8: .line 85
            goto 14
        end local 3 // java.security.interfaces.RSAPublicKey key
      StackMap locals:
      StackMap stack: java.io.IOException
         9: astore 5 /* ioe */
        start local 5 // java.io.IOException ioe
        10: .line 86
            new java.security.InvalidKeyException
            dup
            ldc "Invalid PKCS#1 encoding"
            aload 5 /* ioe */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.io.IOException ioe
        11: .line 90
      StackMap locals:
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unsupported RSA PublicKey format: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        12: .line 91
            aload 1 /* format */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        13: .line 90
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        start local 3 // java.security.interfaces.RSAPublicKey key
        14: .line 93
      StackMap locals: sun.security.rsa.RSAUtil$KeyType java.lang.String byte[] java.security.interfaces.RSAPublicKey
      StackMap stack:
            aload 3 /* key */
            areturn
        end local 3 // java.security.interfaces.RSAPublicKey key
        end local 2 // byte[] encoded
        end local 1 // java.lang.String format
        end local 0 // sun.security.rsa.RSAUtil$KeyType type
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   15     0     type  Lsun/security/rsa/RSAUtil$KeyType;
            0   15     1   format  Ljava/lang/String;
            0   15     2  encoded  [B
            4    6     3      key  Ljava/security/interfaces/RSAPublicKey;
            8    9     3      key  Ljava/security/interfaces/RSAPublicKey;
           14   15     3      key  Ljava/security/interfaces/RSAPublicKey;
            7    8     5    comps  [Ljava/math/BigInteger;
           10   11     5      ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           6     8       9  Class java.io.IOException
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
         Name  Flags
      type     
      format   
      encoded  

  public static java.security.interfaces.RSAPublicKey newKey(sun.security.rsa.RSAUtil$KeyType, java.security.spec.AlgorithmParameterSpec, java.math.BigInteger, java.math.BigInteger);
    descriptor: (Lsun/security/rsa/RSAUtil$KeyType;Ljava/security/spec/AlgorithmParameterSpec;Ljava/math/BigInteger;Ljava/math/BigInteger;)Ljava/security/interfaces/RSAPublicKey;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=4, args_size=4
        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
         0: .line 103
            new sun.security.rsa.RSAPublicKeyImpl
            dup
            aload 0 /* type */
            aload 1 /* params */
            aload 2 /* n */
            aload 3 /* e */
            invokespecial sun.security.rsa.RSAPublicKeyImpl.<init>:(Lsun/security/rsa/RSAUtil$KeyType;Ljava/security/spec/AlgorithmParameterSpec;Ljava/math/BigInteger;Ljava/math/BigInteger;)V
            areturn
        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    1     0    type  Lsun/security/rsa/RSAUtil$KeyType;
            0    1     1  params  Ljava/security/spec/AlgorithmParameterSpec;
            0    1     2       n  Ljava/math/BigInteger;
            0    1     3       e  Ljava/math/BigInteger;
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
        Name  Flags
      type    
      params  
      n       
      e       

  void <init>(sun.security.rsa.RSAUtil$KeyType, java.security.spec.AlgorithmParameterSpec, java.math.BigInteger, java.math.BigInteger);
    descriptor: (Lsun/security/rsa/RSAUtil$KeyType;Ljava/security/spec/AlgorithmParameterSpec;Ljava/math/BigInteger;Ljava/math/BigInteger;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=7, args_size=5
        start local 0 // sun.security.rsa.RSAPublicKeyImpl 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
         0: .line 110
            aload 0 /* this */
            invokespecial sun.security.x509.X509Key.<init>:()V
         1: .line 113
            aload 3 /* n */
            invokevirtual java.math.BigInteger.bitLength:()I
            aload 4 /* e */
            invokestatic sun.security.rsa.RSAKeyFactory.checkRSAProviderKeyLengths:(ILjava/math/BigInteger;)V
         2: .line 114
            aload 3 /* n */
            aload 4 /* e */
            invokestatic sun.security.rsa.RSAPublicKeyImpl.checkExponentRange:(Ljava/math/BigInteger;Ljava/math/BigInteger;)V
         3: .line 116
            aload 0 /* this */
            aload 3 /* n */
            putfield sun.security.rsa.RSAPublicKeyImpl.n:Ljava/math/BigInteger;
         4: .line 117
            aload 0 /* this */
            aload 4 /* e */
            putfield sun.security.rsa.RSAPublicKeyImpl.e:Ljava/math/BigInteger;
         5: .line 121
            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.RSAPublicKeyImpl.algid:Lsun/security/x509/AlgorithmId;
         6: .line 122
            goto 9
      StackMap locals: sun.security.rsa.RSAPublicKeyImpl sun.security.rsa.RSAUtil$KeyType java.security.spec.AlgorithmParameterSpec java.math.BigInteger java.math.BigInteger
      StackMap stack: java.security.ProviderException
         7: astore 5 /* pe */
        start local 5 // java.security.ProviderException pe
         8: .line 123
            new java.security.InvalidKeyException
            dup
            aload 5 /* pe */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.security.ProviderException pe
         9: .line 126
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* type */
            putfield sun.security.rsa.RSAPublicKeyImpl.type:Lsun/security/rsa/RSAUtil$KeyType;
        10: .line 127
            aload 0 /* this */
            aload 2 /* keyParams */
            putfield sun.security.rsa.RSAPublicKeyImpl.keyParams:Ljava/security/spec/AlgorithmParameterSpec;
        11: .line 131
            new sun.security.util.DerOutputStream
            dup
            invokespecial sun.security.util.DerOutputStream.<init>:()V
            astore 5 /* out */
        start local 5 // sun.security.util.DerOutputStream out
        12: .line 132
            aload 5 /* out */
            aload 3 /* n */
            invokevirtual sun.security.util.DerOutputStream.putInteger:(Ljava/math/BigInteger;)V
        13: .line 133
            aload 5 /* out */
            aload 4 /* e */
            invokevirtual sun.security.util.DerOutputStream.putInteger:(Ljava/math/BigInteger;)V
        14: .line 135
            new sun.security.util.DerValue
            dup
            bipush 48
        15: .line 136
            aload 5 /* out */
            invokevirtual sun.security.util.DerOutputStream.toByteArray:()[B
        16: .line 135
            invokespecial sun.security.util.DerValue.<init>:(B[B)V
        17: .line 136
            invokevirtual sun.security.util.DerValue.toByteArray:()[B
        18: .line 134
            astore 6 /* keyArray */
        start local 6 // byte[] keyArray
        19: .line 137
            aload 0 /* this */
            new sun.security.util.BitArray
            dup
            aload 6 /* keyArray */
            arraylength
            bipush 8
            imul
            aload 6 /* keyArray */
            invokespecial sun.security.util.BitArray.<init>:(I[B)V
            invokevirtual sun.security.rsa.RSAPublicKeyImpl.setKey:(Lsun/security/util/BitArray;)V
        end local 6 // byte[] keyArray
        end local 5 // sun.security.util.DerOutputStream out
        20: .line 138
            goto 23
      StackMap locals:
      StackMap stack: java.io.IOException
        21: astore 5 /* exc */
        start local 5 // java.io.IOException exc
        22: .line 140
            new java.security.InvalidKeyException
            dup
            aload 5 /* exc */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.io.IOException exc
        23: .line 142
      StackMap locals:
      StackMap stack:
            return
        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.RSAPublicKeyImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   24     0       this  Lsun/security/rsa/RSAPublicKeyImpl;
            0   24     1       type  Lsun/security/rsa/RSAUtil$KeyType;
            0   24     2  keyParams  Ljava/security/spec/AlgorithmParameterSpec;
            0   24     3          n  Ljava/math/BigInteger;
            0   24     4          e  Ljava/math/BigInteger;
            8    9     5         pe  Ljava/security/ProviderException;
           12   20     5        out  Lsun/security/util/DerOutputStream;
           19   20     6   keyArray  [B
           22   23     5        exc  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           5     6       7  Class java.security.ProviderException
          11    20      21  Class java.io.IOException
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
           Name  Flags
      type       
      keyParams  
      n          
      e          

  private void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.security.rsa.RSAPublicKeyImpl this
        start local 1 // byte[] encoded
         0: .line 147
            aload 0 /* this */
            invokespecial sun.security.x509.X509Key.<init>:()V
         1: .line 148
            aload 1 /* encoded */
            ifnull 2
            aload 1 /* encoded */
            arraylength
            ifne 3
         2: .line 149
      StackMap locals: sun.security.rsa.RSAPublicKeyImpl byte[]
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            ldc "Missing key encoding"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* encoded */
            invokevirtual sun.security.rsa.RSAPublicKeyImpl.decode:([B)V
         4: .line 152
            aload 0 /* this */
            getfield sun.security.rsa.RSAPublicKeyImpl.n:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.bitLength:()I
            aload 0 /* this */
            getfield sun.security.rsa.RSAPublicKeyImpl.e:Ljava/math/BigInteger;
            invokestatic sun.security.rsa.RSAKeyFactory.checkRSAProviderKeyLengths:(ILjava/math/BigInteger;)V
         5: .line 153
            aload 0 /* this */
            getfield sun.security.rsa.RSAPublicKeyImpl.n:Ljava/math/BigInteger;
            aload 0 /* this */
            getfield sun.security.rsa.RSAPublicKeyImpl.e:Ljava/math/BigInteger;
            invokestatic sun.security.rsa.RSAPublicKeyImpl.checkExponentRange:(Ljava/math/BigInteger;Ljava/math/BigInteger;)V
         6: .line 157
            aload 0 /* this */
            getfield sun.security.rsa.RSAPublicKeyImpl.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
         7: .line 158
            aload 0 /* this */
            aload 2 /* o */
            iconst_0
            aaload
            checkcast sun.security.rsa.RSAUtil$KeyType
            putfield sun.security.rsa.RSAPublicKeyImpl.type:Lsun/security/rsa/RSAUtil$KeyType;
         8: .line 159
            aload 0 /* this */
            aload 2 /* o */
            iconst_1
            aaload
            checkcast java.security.spec.AlgorithmParameterSpec
            putfield sun.security.rsa.RSAPublicKeyImpl.keyParams:Ljava/security/spec/AlgorithmParameterSpec;
        end local 2 // java.lang.Object[] o
         9: .line 160
            goto 12
      StackMap locals:
      StackMap stack: java.security.ProviderException
        10: astore 2 /* e */
        start local 2 // java.security.ProviderException e
        11: .line 161
            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
        12: .line 163
      StackMap locals:
      StackMap stack:
            return
        end local 1 // byte[] encoded
        end local 0 // sun.security.rsa.RSAPublicKeyImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Lsun/security/rsa/RSAPublicKeyImpl;
            0   13     1  encoded  [B
            7    9     2        o  [Ljava/lang/Object;
           11   12     2        e  Ljava/security/ProviderException;
      Exception table:
        from    to  target  type
           6     9      10  Class java.security.ProviderException
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
         Name  Flags
      encoded  

  static void checkExponentRange(java.math.BigInteger, java.math.BigInteger);
    descriptor: (Ljava/math/BigInteger;Ljava/math/BigInteger;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.math.BigInteger mod
        start local 1 // java.math.BigInteger exp
         0: .line 169
            aload 1 /* exp */
            aload 0 /* mod */
            invokevirtual java.math.BigInteger.compareTo:(Ljava/math/BigInteger;)I
            iflt 2
         1: .line 170
            new java.security.InvalidKeyException
            dup
            ldc "exponent is larger than modulus"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 174
      StackMap locals:
      StackMap stack:
            aload 1 /* exp */
            getstatic sun.security.rsa.RSAPublicKeyImpl.THREE:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.compareTo:(Ljava/math/BigInteger;)I
            ifge 4
         3: .line 175
            new java.security.InvalidKeyException
            dup
            ldc "exponent is smaller than 3"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 177
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.math.BigInteger exp
        end local 0 // java.math.BigInteger mod
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0   mod  Ljava/math/BigInteger;
            0    5     1   exp  Ljava/math/BigInteger;
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
      Name  Flags
      mod   
      exp   

  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.RSAPublicKeyImpl this
         0: .line 182
            aload 0 /* this */
            getfield sun.security.rsa.RSAPublicKeyImpl.type:Lsun/security/rsa/RSAUtil$KeyType;
            getfield sun.security.rsa.RSAUtil$KeyType.keyAlgo:Ljava/lang/String;
            areturn
        end local 0 // sun.security.rsa.RSAPublicKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/rsa/RSAPublicKeyImpl;

  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.RSAPublicKeyImpl this
         0: .line 188
            aload 0 /* this */
            getfield sun.security.rsa.RSAPublicKeyImpl.n:Ljava/math/BigInteger;
            areturn
        end local 0 // sun.security.rsa.RSAPublicKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/rsa/RSAPublicKeyImpl;

  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.RSAPublicKeyImpl this
         0: .line 194
            aload 0 /* this */
            getfield sun.security.rsa.RSAPublicKeyImpl.e:Ljava/math/BigInteger;
            areturn
        end local 0 // sun.security.rsa.RSAPublicKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/rsa/RSAPublicKeyImpl;

  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.RSAPublicKeyImpl this
         0: .line 200
            aload 0 /* this */
            getfield sun.security.rsa.RSAPublicKeyImpl.keyParams:Ljava/security/spec/AlgorithmParameterSpec;
            areturn
        end local 0 // sun.security.rsa.RSAPublicKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/rsa/RSAPublicKeyImpl;

  private static java.math.BigInteger[] parseASN1(byte[]);
    descriptor: ([B)[Ljava/math/BigInteger;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // byte[] raw
         0: .line 206
            new sun.security.util.DerValue
            dup
            aload 0 /* raw */
            invokespecial sun.security.util.DerValue.<init>:([B)V
            astore 1 /* derValue */
        start local 1 // sun.security.util.DerValue derValue
         1: .line 207
            aload 1 /* derValue */
            getfield sun.security.util.DerValue.tag:B
            bipush 48
            if_icmpeq 3
         2: .line 208
            new java.io.IOException
            dup
            ldc "Not a SEQUENCE"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 210
      StackMap locals: sun.security.util.DerValue
      StackMap stack:
            iconst_2
            anewarray java.math.BigInteger
            astore 2 /* result */
        start local 2 // java.math.BigInteger[] result
         4: .line 211
            aload 2 /* result */
            iconst_0
            aload 1 /* derValue */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.getPositiveBigInteger:()Ljava/math/BigInteger;
            aastore
         5: .line 212
            aload 2 /* result */
            iconst_1
            aload 1 /* derValue */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.getPositiveBigInteger:()Ljava/math/BigInteger;
            aastore
         6: .line 213
            aload 1 /* derValue */
            getfield sun.security.util.DerValue.data:Lsun/security/util/DerInputStream;
            invokevirtual sun.security.util.DerInputStream.available:()I
            ifeq 8
         7: .line 214
            new java.io.IOException
            dup
            ldc "Extra data available"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 216
      StackMap locals: java.math.BigInteger[]
      StackMap stack:
            aload 2 /* result */
            areturn
        end local 2 // java.math.BigInteger[] result
        end local 1 // sun.security.util.DerValue derValue
        end local 0 // byte[] raw
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0       raw  [B
            1    9     1  derValue  Lsun/security/util/DerValue;
            4    9     2    result  [Ljava/math/BigInteger;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      raw   

  protected void parseKeyBits();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // sun.security.rsa.RSAPublicKeyImpl this
         0: .line 224
            aload 0 /* this */
            invokevirtual sun.security.rsa.RSAPublicKeyImpl.getKey:()Lsun/security/util/BitArray;
            invokevirtual sun.security.util.BitArray.toByteArray:()[B
            invokestatic sun.security.rsa.RSAPublicKeyImpl.parseASN1:([B)[Ljava/math/BigInteger;
            astore 1 /* comps */
        start local 1 // java.math.BigInteger[] comps
         1: .line 225
            aload 0 /* this */
            aload 1 /* comps */
            iconst_0
            aaload
            putfield sun.security.rsa.RSAPublicKeyImpl.n:Ljava/math/BigInteger;
         2: .line 226
            aload 0 /* this */
            aload 1 /* comps */
            iconst_1
            aaload
            putfield sun.security.rsa.RSAPublicKeyImpl.e:Ljava/math/BigInteger;
        end local 1 // java.math.BigInteger[] comps
         3: .line 227
            goto 6
      StackMap locals:
      StackMap stack: java.io.IOException
         4: astore 1 /* e */
        start local 1 // java.io.IOException e
         5: .line 228
            new java.security.InvalidKeyException
            dup
            ldc "Invalid RSA public key"
            aload 1 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.io.IOException e
         6: .line 230
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.security.rsa.RSAPublicKeyImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lsun/security/rsa/RSAPublicKeyImpl;
            1    3     1  comps  [Ljava/math/BigInteger;
            5    6     1      e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     3       4  Class java.io.IOException
    Exceptions:
      throws java.security.InvalidKeyException

  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.RSAPublicKeyImpl this
         0: .line 235
            new java.lang.StringBuilder
            dup
            ldc "Sun "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield sun.security.rsa.RSAPublicKeyImpl.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 " public key, "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield sun.security.rsa.RSAPublicKeyImpl.n:Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.bitLength:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         1: .line 236
            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.RSAPublicKeyImpl.keyParams:Ljava/security/spec/AlgorithmParameterSpec;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc "\n  modulus: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield sun.security.rsa.RSAPublicKeyImpl.n:Ljava/math/BigInteger;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         2: .line 237
            ldc "\n  public exponent: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield sun.security.rsa.RSAPublicKeyImpl.e:Ljava/math/BigInteger;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         3: .line 235
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // sun.security.rsa.RSAPublicKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/security/rsa/RSAPublicKeyImpl;

  protected java.lang.Object writeReplace();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // sun.security.rsa.RSAPublicKeyImpl this
         0: .line 242
            new java.security.KeyRep
            dup
            getstatic java.security.KeyRep$Type.PUBLIC:Ljava/security/KeyRep$Type;
         1: .line 243
            aload 0 /* this */
            invokevirtual sun.security.rsa.RSAPublicKeyImpl.getAlgorithm:()Ljava/lang/String;
         2: .line 244
            aload 0 /* this */
            invokevirtual sun.security.rsa.RSAPublicKeyImpl.getFormat:()Ljava/lang/String;
         3: .line 245
            aload 0 /* this */
            invokevirtual sun.security.rsa.RSAPublicKeyImpl.getEncoded:()[B
         4: .line 242
            invokespecial java.security.KeyRep.<init>:(Ljava/security/KeyRep$Type;Ljava/lang/String;Ljava/lang/String;[B)V
            areturn
        end local 0 // sun.security.rsa.RSAPublicKeyImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/rsa/RSAPublicKeyImpl;
    Exceptions:
      throws java.io.ObjectStreamException
}
SourceFile: "RSAPublicKeyImpl.java"
InnerClasses:
  public final Type = java.security.KeyRep$Type of java.security.KeyRep
  public final KeyType = sun.security.rsa.RSAUtil$KeyType of sun.security.rsa.RSAUtil