public final class com.sun.crypto.provider.RSACipher extends javax.crypto.CipherSpi
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.sun.crypto.provider.RSACipher
  super_class: javax.crypto.CipherSpi
{
  private static final byte[] B0;
    descriptor: [B
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final int MODE_ENCRYPT;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private static final int MODE_DECRYPT;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  private static final int MODE_SIGN;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 3

  private static final int MODE_VERIFY;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 4

  private static final java.lang.String PAD_NONE;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "NoPadding"

  private static final java.lang.String PAD_PKCS1;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "PKCS1Padding"

  private static final java.lang.String PAD_OAEP_MGF1;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "OAEP"

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

  private java.lang.String paddingType;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private sun.security.rsa.RSAPadding padding;
    descriptor: Lsun/security/rsa/RSAPadding;
    flags: (0x0002) ACC_PRIVATE

  private java.security.spec.AlgorithmParameterSpec spec;
    descriptor: Ljava/security/spec/AlgorithmParameterSpec;
    flags: (0x0002) ACC_PRIVATE

  private byte[] buffer;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

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

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

  private java.security.interfaces.RSAPublicKey publicKey;
    descriptor: Ljava/security/interfaces/RSAPublicKey;
    flags: (0x0002) ACC_PRIVATE

  private java.security.interfaces.RSAPrivateKey privateKey;
    descriptor: Ljava/security/interfaces/RSAPrivateKey;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String oaepHashAlgorithm;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 71
            iconst_0
            newarray 8
            putstatic com.sun.crypto.provider.RSACipher.B0:[B
         1: .line 87
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.RSACipher this
         0: .line 120
            aload 0 /* this */
            invokespecial javax.crypto.CipherSpi.<init>:()V
         1: .line 99
            aload 0 /* this */
            aconst_null
            putfield com.sun.crypto.provider.RSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
         2: .line 115
            aload 0 /* this */
            ldc "SHA-1"
            putfield com.sun.crypto.provider.RSACipher.oaepHashAlgorithm:Ljava/lang/String;
         3: .line 121
            aload 0 /* this */
            ldc "PKCS1Padding"
            putfield com.sun.crypto.provider.RSACipher.paddingType:Ljava/lang/String;
         4: .line 122
            return
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/crypto/provider/RSACipher;

  protected void engineSetMode(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.sun.crypto.provider.RSACipher this
        start local 1 // java.lang.String mode
         0: .line 127
            aload 1 /* mode */
            ldc "ECB"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 2
         1: .line 128
            new java.security.NoSuchAlgorithmException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unsupported mode "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* mode */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 130
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String mode
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/crypto/provider/RSACipher;
            0    3     1  mode  Ljava/lang/String;
    Exceptions:
      throws java.security.NoSuchAlgorithmException
    MethodParameters:
      Name  Flags
      mode  

  protected void engineSetPadding(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.sun.crypto.provider.RSACipher this
        start local 1 // java.lang.String paddingName
         0: .line 136
            aload 1 /* paddingName */
            ldc "NoPadding"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 3
         1: .line 137
            aload 0 /* this */
            ldc "NoPadding"
            putfield com.sun.crypto.provider.RSACipher.paddingType:Ljava/lang/String;
         2: .line 138
            goto 25
      StackMap locals:
      StackMap stack:
         3: aload 1 /* paddingName */
            ldc "PKCS1Padding"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 6
         4: .line 139
            aload 0 /* this */
            ldc "PKCS1Padding"
            putfield com.sun.crypto.provider.RSACipher.paddingType:Ljava/lang/String;
         5: .line 140
            goto 25
         6: .line 141
      StackMap locals:
      StackMap stack:
            aload 1 /* paddingName */
            getstatic java.util.Locale.ENGLISH:Ljava/util/Locale;
            invokevirtual java.lang.String.toLowerCase:(Ljava/util/Locale;)Ljava/lang/String;
            astore 2 /* lowerPadding */
        start local 2 // java.lang.String lowerPadding
         7: .line 142
            aload 2 /* lowerPadding */
            ldc "oaeppadding"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 10
         8: .line 143
            aload 0 /* this */
            ldc "OAEP"
            putfield com.sun.crypto.provider.RSACipher.paddingType:Ljava/lang/String;
         9: .line 144
            goto 25
      StackMap locals: java.lang.String
      StackMap stack:
        10: aload 2 /* lowerPadding */
            ldc "oaepwith"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 22
        11: .line 145
            aload 2 /* lowerPadding */
            ldc "andmgf1padding"
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifeq 22
        12: .line 146
            aload 0 /* this */
            ldc "OAEP"
            putfield com.sun.crypto.provider.RSACipher.paddingType:Ljava/lang/String;
        13: .line 149
            aload 0 /* this */
        14: .line 150
            aload 1 /* paddingName */
            bipush 8
            aload 1 /* paddingName */
            invokevirtual java.lang.String.length:()I
            bipush 14
            isub
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
        15: .line 149
            putfield com.sun.crypto.provider.RSACipher.oaepHashAlgorithm:Ljava/lang/String;
        16: .line 153
            invokestatic sun.security.jca.Providers.getProviderList:()Lsun/security/jca/ProviderList;
        17: .line 154
            ldc "MessageDigest"
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.oaepHashAlgorithm:Ljava/lang/String;
        18: .line 153
            invokevirtual sun.security.jca.ProviderList.getService:(Ljava/lang/String;Ljava/lang/String;)Ljava/security/Provider$Service;
            ifnonnull 25
        19: .line 155
            new javax.crypto.NoSuchPaddingException
            dup
        20: .line 156
            new java.lang.StringBuilder
            dup
            ldc "MessageDigest not available for "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* paddingName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        21: .line 155
            invokespecial javax.crypto.NoSuchPaddingException.<init>:(Ljava/lang/String;)V
            athrow
        22: .line 159
      StackMap locals:
      StackMap stack:
            new javax.crypto.NoSuchPaddingException
            dup
        23: .line 160
            new java.lang.StringBuilder
            dup
            ldc "Padding "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* paddingName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " not supported"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        24: .line 159
            invokespecial javax.crypto.NoSuchPaddingException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.lang.String lowerPadding
        25: .line 163
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String paddingName
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   26     0          this  Lcom/sun/crypto/provider/RSACipher;
            0   26     1   paddingName  Ljava/lang/String;
            7   25     2  lowerPadding  Ljava/lang/String;
    Exceptions:
      throws javax.crypto.NoSuchPaddingException
    MethodParameters:
             Name  Flags
      paddingName  

  protected int engineGetBlockSize();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.RSACipher this
         0: .line 168
            iconst_0
            ireturn
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/crypto/provider/RSACipher;

  protected int engineGetOutputSize(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.sun.crypto.provider.RSACipher this
        start local 1 // int inputLen
         0: .line 174
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.outputSize:I
            ireturn
        end local 1 // int inputLen
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lcom/sun/crypto/provider/RSACipher;
            0    1     1  inputLen  I
    MethodParameters:
          Name  Flags
      inputLen  

  protected byte[] engineGetIV();
    descriptor: ()[B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.crypto.provider.RSACipher this
         0: .line 180
            aconst_null
            areturn
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/crypto/provider/RSACipher;

  protected java.security.AlgorithmParameters engineGetParameters();
    descriptor: ()Ljava/security/AlgorithmParameters;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.sun.crypto.provider.RSACipher this
         0: .line 185
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
            ifnull 12
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
            instanceof javax.crypto.spec.OAEPParameterSpec
            ifeq 12
         1: .line 188
            ldc "OAEP"
         2: .line 189
            invokestatic com.sun.crypto.provider.SunJCE.getInstance:()Lcom/sun/crypto/provider/SunJCE;
         3: .line 188
            invokestatic java.security.AlgorithmParameters.getInstance:(Ljava/lang/String;Ljava/security/Provider;)Ljava/security/AlgorithmParameters;
         4: .line 187
            astore 1 /* params */
        start local 1 // java.security.AlgorithmParameters params
         5: .line 190
            aload 1 /* params */
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
            invokevirtual java.security.AlgorithmParameters.init:(Ljava/security/spec/AlgorithmParameterSpec;)V
         6: .line 191
            aload 1 /* params */
         7: areturn
        end local 1 // java.security.AlgorithmParameters params
         8: .line 192
      StackMap locals:
      StackMap stack: java.security.NoSuchAlgorithmException
            pop
         9: .line 194
            new java.lang.RuntimeException
            dup
            ldc "Cannot find OAEP  AlgorithmParameters implementation in SunJCE provider"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 196
      StackMap locals:
      StackMap stack: java.security.spec.InvalidParameterSpecException
            pop
        11: .line 198
            new java.lang.RuntimeException
            dup
            ldc "OAEPParameterSpec not supported"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 201
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lcom/sun/crypto/provider/RSACipher;
            5    8     1  params  Ljava/security/AlgorithmParameters;
      Exception table:
        from    to  target  type
           1     7       8  Class java.security.NoSuchAlgorithmException
           1     7      10  Class java.security.spec.InvalidParameterSpecException

  protected void engineInit(int, java.security.Key, java.security.SecureRandom);
    descriptor: (ILjava/security/Key;Ljava/security/SecureRandom;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // com.sun.crypto.provider.RSACipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // java.security.SecureRandom random
         0: .line 209
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            aload 3 /* random */
            aconst_null
            invokevirtual com.sun.crypto.provider.RSACipher.init:(ILjava/security/Key;Ljava/security/SecureRandom;Ljava/security/spec/AlgorithmParameterSpec;)V
         1: .line 210
            goto 7
      StackMap locals:
      StackMap stack: java.security.InvalidAlgorithmParameterException
         2: astore 4 /* iape */
        start local 4 // java.security.InvalidAlgorithmParameterException iape
         3: .line 214
            new java.security.InvalidKeyException
            dup
            ldc "Wrong parameters"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
         4: .line 213
            astore 5 /* ike */
        start local 5 // java.security.InvalidKeyException ike
         5: .line 215
            aload 5 /* ike */
            aload 4 /* iape */
            invokevirtual java.security.InvalidKeyException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
         6: .line 216
            aload 5 /* ike */
            athrow
        end local 5 // java.security.InvalidKeyException ike
        end local 4 // java.security.InvalidAlgorithmParameterException iape
         7: .line 218
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.security.SecureRandom random
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lcom/sun/crypto/provider/RSACipher;
            0    8     1  opmode  I
            0    8     2     key  Ljava/security/Key;
            0    8     3  random  Ljava/security/SecureRandom;
            3    7     4    iape  Ljava/security/InvalidAlgorithmParameterException;
            5    7     5     ike  Ljava/security/InvalidKeyException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.security.InvalidAlgorithmParameterException
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      random  

  protected void engineInit(int, java.security.Key, java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom);
    descriptor: (ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // com.sun.crypto.provider.RSACipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // java.security.spec.AlgorithmParameterSpec params
        start local 4 // java.security.SecureRandom random
         0: .line 224
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            aload 4 /* random */
            aload 3 /* params */
            invokevirtual com.sun.crypto.provider.RSACipher.init:(ILjava/security/Key;Ljava/security/SecureRandom;Ljava/security/spec/AlgorithmParameterSpec;)V
         1: .line 225
            return
        end local 4 // java.security.SecureRandom random
        end local 3 // java.security.spec.AlgorithmParameterSpec params
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/sun/crypto/provider/RSACipher;
            0    2     1  opmode  I
            0    2     2     key  Ljava/security/Key;
            0    2     3  params  Ljava/security/spec/AlgorithmParameterSpec;
            0    2     4  random  Ljava/security/SecureRandom;
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      params  
      random  

  protected void engineInit(int, java.security.Key, java.security.AlgorithmParameters, java.security.SecureRandom);
    descriptor: (ILjava/security/Key;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=7, args_size=5
        start local 0 // com.sun.crypto.provider.RSACipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // java.security.AlgorithmParameters params
        start local 4 // java.security.SecureRandom random
         0: .line 231
            aload 3 /* params */
            ifnonnull 3
         1: .line 232
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            aload 4 /* random */
            aconst_null
            invokevirtual com.sun.crypto.provider.RSACipher.init:(ILjava/security/Key;Ljava/security/SecureRandom;Ljava/security/spec/AlgorithmParameterSpec;)V
         2: .line 233
            goto 12
         3: .line 236
      StackMap locals:
      StackMap stack:
            aload 3 /* params */
            ldc Ljavax/crypto/spec/OAEPParameterSpec;
            invokevirtual java.security.AlgorithmParameters.getParameterSpec:(Ljava/lang/Class;)Ljava/security/spec/AlgorithmParameterSpec;
            checkcast javax.crypto.spec.OAEPParameterSpec
         4: .line 235
            astore 5 /* spec */
        start local 5 // javax.crypto.spec.OAEPParameterSpec spec
         5: .line 237
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            aload 4 /* random */
            aload 5 /* spec */
            invokevirtual com.sun.crypto.provider.RSACipher.init:(ILjava/security/Key;Ljava/security/SecureRandom;Ljava/security/spec/AlgorithmParameterSpec;)V
        end local 5 // javax.crypto.spec.OAEPParameterSpec spec
         6: .line 238
            goto 12
      StackMap locals:
      StackMap stack: java.security.spec.InvalidParameterSpecException
         7: astore 5 /* ipse */
        start local 5 // java.security.spec.InvalidParameterSpecException ipse
         8: .line 240
            new java.security.InvalidAlgorithmParameterException
            dup
            ldc "Wrong parameter"
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
         9: .line 239
            astore 6 /* iape */
        start local 6 // java.security.InvalidAlgorithmParameterException iape
        10: .line 241
            aload 6 /* iape */
            aload 5 /* ipse */
            invokevirtual java.security.InvalidAlgorithmParameterException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            pop
        11: .line 242
            aload 6 /* iape */
            athrow
        end local 6 // java.security.InvalidAlgorithmParameterException iape
        end local 5 // java.security.spec.InvalidParameterSpecException ipse
        12: .line 245
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.security.SecureRandom random
        end local 3 // java.security.AlgorithmParameters params
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lcom/sun/crypto/provider/RSACipher;
            0   13     1  opmode  I
            0   13     2     key  Ljava/security/Key;
            0   13     3  params  Ljava/security/AlgorithmParameters;
            0   13     4  random  Ljava/security/SecureRandom;
            5    6     5    spec  Ljavax/crypto/spec/OAEPParameterSpec;
            8   12     5    ipse  Ljava/security/spec/InvalidParameterSpecException;
           10   12     6    iape  Ljava/security/InvalidAlgorithmParameterException;
      Exception table:
        from    to  target  type
           3     6       7  Class java.security.spec.InvalidParameterSpecException
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      params  
      random  

  private void init(int, java.security.Key, java.security.SecureRandom, java.security.spec.AlgorithmParameterSpec);
    descriptor: (ILjava/security/Key;Ljava/security/SecureRandom;Ljava/security/spec/AlgorithmParameterSpec;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=10, args_size=5
        start local 0 // com.sun.crypto.provider.RSACipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // java.security.SecureRandom random
        start local 4 // java.security.spec.AlgorithmParameterSpec params
         0: .line 253
            iload 1 /* opmode */
            tableswitch { // 1 - 4
                    1: 1
                    2: 3
                    3: 1
                    4: 3
              default: 5
          }
         1: .line 256
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 5 /* encrypt */
        start local 5 // boolean encrypt
         2: .line 257
            goto 6
        end local 5 // boolean encrypt
         3: .line 260
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 5 /* encrypt */
        start local 5 // boolean encrypt
         4: .line 261
            goto 6
        end local 5 // boolean encrypt
         5: .line 263
      StackMap locals:
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unknown mode: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* opmode */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        start local 5 // boolean encrypt
         6: .line 265
      StackMap locals: int
      StackMap stack:
            aload 2 /* key */
            invokestatic sun.security.rsa.RSAKeyFactory.toRSAKey:(Ljava/security/Key;)Ljava/security/interfaces/RSAKey;
            astore 6 /* rsaKey */
        start local 6 // java.security.interfaces.RSAKey rsaKey
         7: .line 266
            aload 2 /* key */
            instanceof java.security.interfaces.RSAPublicKey
            ifeq 14
         8: .line 267
            aload 0 /* this */
            iload 5 /* encrypt */
            ifeq 9
            iconst_1
            goto 10
      StackMap locals: com.sun.crypto.provider.RSACipher int java.security.Key java.security.SecureRandom java.security.spec.AlgorithmParameterSpec int java.security.interfaces.RSAKey
      StackMap stack: com.sun.crypto.provider.RSACipher
         9: iconst_4
      StackMap locals: com.sun.crypto.provider.RSACipher int java.security.Key java.security.SecureRandom java.security.spec.AlgorithmParameterSpec int java.security.interfaces.RSAKey
      StackMap stack: com.sun.crypto.provider.RSACipher int
        10: putfield com.sun.crypto.provider.RSACipher.mode:I
        11: .line 268
            aload 0 /* this */
            aload 2 /* key */
            checkcast java.security.interfaces.RSAPublicKey
            putfield com.sun.crypto.provider.RSACipher.publicKey:Ljava/security/interfaces/RSAPublicKey;
        12: .line 269
            aload 0 /* this */
            aconst_null
            putfield com.sun.crypto.provider.RSACipher.privateKey:Ljava/security/interfaces/RSAPrivateKey;
        13: .line 270
            goto 19
        14: .line 271
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* encrypt */
            ifeq 15
            iconst_3
            goto 16
      StackMap locals:
      StackMap stack: com.sun.crypto.provider.RSACipher
        15: iconst_2
      StackMap locals: com.sun.crypto.provider.RSACipher int java.security.Key java.security.SecureRandom java.security.spec.AlgorithmParameterSpec int java.security.interfaces.RSAKey
      StackMap stack: com.sun.crypto.provider.RSACipher int
        16: putfield com.sun.crypto.provider.RSACipher.mode:I
        17: .line 272
            aload 0 /* this */
            aload 2 /* key */
            checkcast java.security.interfaces.RSAPrivateKey
            putfield com.sun.crypto.provider.RSACipher.privateKey:Ljava/security/interfaces/RSAPrivateKey;
        18: .line 273
            aload 0 /* this */
            aconst_null
            putfield com.sun.crypto.provider.RSACipher.publicKey:Ljava/security/interfaces/RSAPublicKey;
        19: .line 275
      StackMap locals:
      StackMap stack:
            aload 6 /* rsaKey */
            invokeinterface java.security.interfaces.RSAKey.getModulus:()Ljava/math/BigInteger;
            invokestatic sun.security.rsa.RSACore.getByteLength:(Ljava/math/BigInteger;)I
            istore 7 /* n */
        start local 7 // int n
        20: .line 276
            aload 0 /* this */
            iload 7 /* n */
            putfield com.sun.crypto.provider.RSACipher.outputSize:I
        21: .line 277
            aload 0 /* this */
            iconst_0
            putfield com.sun.crypto.provider.RSACipher.bufOfs:I
        22: .line 278
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.paddingType:Ljava/lang/String;
            ldc "NoPadding"
            if_acmpne 30
        23: .line 279
            aload 4 /* params */
            ifnull 27
        24: .line 280
            new java.security.InvalidAlgorithmParameterException
            dup
        25: .line 281
            ldc "Parameters not supported"
        26: .line 280
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        27: .line 283
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iconst_3
            iload 7 /* n */
            aload 3 /* random */
            invokestatic sun.security.rsa.RSAPadding.getInstance:(IILjava/security/SecureRandom;)Lsun/security/rsa/RSAPadding;
            putfield com.sun.crypto.provider.RSACipher.padding:Lsun/security/rsa/RSAPadding;
        28: .line 284
            aload 0 /* this */
            iload 7 /* n */
            newarray 8
            putfield com.sun.crypto.provider.RSACipher.buffer:[B
        29: .line 285
            goto 70
      StackMap locals:
      StackMap stack:
        30: aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.paddingType:Ljava/lang/String;
            ldc "PKCS1Padding"
            if_acmpne 48
        31: .line 286
            aload 4 /* params */
            ifnull 38
        32: .line 287
            aload 4 /* params */
            instanceof sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec
            ifne 36
        33: .line 288
            new java.security.InvalidAlgorithmParameterException
            dup
        34: .line 289
            ldc "Parameters not supported"
        35: .line 288
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        36: .line 292
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* params */
            putfield com.sun.crypto.provider.RSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
        37: .line 293
            aload 0 /* this */
            aload 3 /* random */
            putfield com.sun.crypto.provider.RSACipher.random:Ljava/security/SecureRandom;
        38: .line 295
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.mode:I
            iconst_2
            if_icmpgt 39
            iconst_2
            goto 40
        39: .line 296
      StackMap locals:
      StackMap stack:
            iconst_1
        40: .line 295
      StackMap locals:
      StackMap stack: int
            istore 8 /* blockType */
        start local 8 // int blockType
        41: .line 297
            aload 0 /* this */
            iload 8 /* blockType */
            iload 7 /* n */
            aload 3 /* random */
            invokestatic sun.security.rsa.RSAPadding.getInstance:(IILjava/security/SecureRandom;)Lsun/security/rsa/RSAPadding;
            putfield com.sun.crypto.provider.RSACipher.padding:Lsun/security/rsa/RSAPadding;
        42: .line 298
            iload 5 /* encrypt */
            ifeq 46
        43: .line 299
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.padding:Lsun/security/rsa/RSAPadding;
            invokevirtual sun.security.rsa.RSAPadding.getMaxDataSize:()I
            istore 9 /* k */
        start local 9 // int k
        44: .line 300
            aload 0 /* this */
            iload 9 /* k */
            newarray 8
            putfield com.sun.crypto.provider.RSACipher.buffer:[B
        end local 9 // int k
        45: .line 301
            goto 70
        46: .line 302
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 7 /* n */
            newarray 8
            putfield com.sun.crypto.provider.RSACipher.buffer:[B
        end local 8 // int blockType
        47: .line 304
            goto 70
        48: .line 305
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.mode:I
            iconst_3
            if_icmpeq 49
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.mode:I
            iconst_4
            if_icmpne 52
        49: .line 306
      StackMap locals:
      StackMap stack:
            new java.security.InvalidKeyException
            dup
        50: .line 307
            ldc "OAEP cannot be used to sign or verify signatures"
        51: .line 306
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        52: .line 309
      StackMap locals:
      StackMap stack:
            aload 4 /* params */
            ifnull 59
        53: .line 310
            aload 4 /* params */
            instanceof javax.crypto.spec.OAEPParameterSpec
            ifne 57
        54: .line 311
            new java.security.InvalidAlgorithmParameterException
            dup
        55: .line 312
            ldc "Wrong Parameters for OAEP Padding"
        56: .line 311
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        57: .line 314
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* params */
            putfield com.sun.crypto.provider.RSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
        58: .line 315
            goto 62
        59: .line 316
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new javax.crypto.spec.OAEPParameterSpec
            dup
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.oaepHashAlgorithm:Ljava/lang/String;
            ldc "MGF1"
        60: .line 317
            getstatic java.security.spec.MGF1ParameterSpec.SHA1:Ljava/security/spec/MGF1ParameterSpec;
            getstatic javax.crypto.spec.PSource$PSpecified.DEFAULT:Ljavax/crypto/spec/PSource$PSpecified;
            invokespecial javax.crypto.spec.OAEPParameterSpec.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/security/spec/AlgorithmParameterSpec;Ljavax/crypto/spec/PSource;)V
        61: .line 316
            putfield com.sun.crypto.provider.RSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
        62: .line 319
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_4
            iload 7 /* n */
        63: .line 320
            aload 3 /* random */
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
            checkcast javax.crypto.spec.OAEPParameterSpec
        64: .line 319
            invokestatic sun.security.rsa.RSAPadding.getInstance:(IILjava/security/SecureRandom;Ljavax/crypto/spec/OAEPParameterSpec;)Lsun/security/rsa/RSAPadding;
            putfield com.sun.crypto.provider.RSACipher.padding:Lsun/security/rsa/RSAPadding;
        65: .line 321
            iload 5 /* encrypt */
            ifeq 69
        66: .line 322
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.padding:Lsun/security/rsa/RSAPadding;
            invokevirtual sun.security.rsa.RSAPadding.getMaxDataSize:()I
            istore 8 /* k */
        start local 8 // int k
        67: .line 323
            aload 0 /* this */
            iload 8 /* k */
            newarray 8
            putfield com.sun.crypto.provider.RSACipher.buffer:[B
        end local 8 // int k
        68: .line 324
            goto 70
        69: .line 325
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 7 /* n */
            newarray 8
            putfield com.sun.crypto.provider.RSACipher.buffer:[B
        70: .line 328
      StackMap locals:
      StackMap stack:
            return
        end local 7 // int n
        end local 6 // java.security.interfaces.RSAKey rsaKey
        end local 5 // boolean encrypt
        end local 4 // java.security.spec.AlgorithmParameterSpec params
        end local 3 // java.security.SecureRandom random
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   71     0       this  Lcom/sun/crypto/provider/RSACipher;
            0   71     1     opmode  I
            0   71     2        key  Ljava/security/Key;
            0   71     3     random  Ljava/security/SecureRandom;
            0   71     4     params  Ljava/security/spec/AlgorithmParameterSpec;
            2    3     5    encrypt  Z
            4    5     5    encrypt  Z
            6   71     5    encrypt  Z
            7   71     6     rsaKey  Ljava/security/interfaces/RSAKey;
           20   71     7          n  I
           41   47     8  blockType  I
           44   45     9          k  I
           67   68     8          k  I
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      random  
      params  

  private void update(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // com.sun.crypto.provider.RSACipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
         0: .line 332
            iload 3 /* inLen */
            ifeq 1
            aload 1 /* in */
            ifnonnull 2
         1: .line 333
      StackMap locals:
      StackMap stack:
            return
         2: .line 335
      StackMap locals:
      StackMap stack:
            iload 3 /* inLen */
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.buffer:[B
            arraylength
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.bufOfs:I
            isub
            if_icmple 5
         3: .line 336
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.buffer:[B
            arraylength
            iconst_1
            iadd
            putfield com.sun.crypto.provider.RSACipher.bufOfs:I
         4: .line 337
            return
         5: .line 339
      StackMap locals:
      StackMap stack:
            aload 1 /* in */
            iload 2 /* inOfs */
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.buffer:[B
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.bufOfs:I
            iload 3 /* inLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 340
            aload 0 /* this */
            dup
            getfield com.sun.crypto.provider.RSACipher.bufOfs:I
            iload 3 /* inLen */
            iadd
            putfield com.sun.crypto.provider.RSACipher.bufOfs:I
         7: .line 341
            return
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lcom/sun/crypto/provider/RSACipher;
            0    8     1     in  [B
            0    8     2  inOfs  I
            0    8     3  inLen  I
    MethodParameters:
       Name  Flags
      in     
      inOfs  
      inLen  

  private byte[] doFinal();
    descriptor: ()[B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=1
        start local 0 // com.sun.crypto.provider.RSACipher this
         0: .line 346
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.bufOfs:I
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.buffer:[B
            arraylength
            if_icmple 4
         1: .line 347
            new javax.crypto.IllegalBlockSizeException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Data must not be longer than "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         2: .line 348
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.buffer:[B
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " bytes"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 347
            invokespecial javax.crypto.IllegalBlockSizeException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 352
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.mode:I
            tableswitch { // 1 - 4
                    1: 14
                    2: 18
                    3: 5
                    4: 9
              default: 23
          }
         5: .line 354
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.padding:Lsun/security/rsa/RSAPadding;
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.buffer:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.bufOfs:I
            invokevirtual sun.security.rsa.RSAPadding.pad:([BII)[B
            astore 1 /* data */
        start local 1 // byte[] data
         6: .line 355
            aload 1 /* data */
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.privateKey:Ljava/security/interfaces/RSAPrivateKey;
            iconst_1
            invokestatic sun.security.rsa.RSACore.rsa:([BLjava/security/interfaces/RSAPrivateKey;Z)[B
            astore 5
         7: .line 371
            aload 0 /* this */
            iconst_0
            putfield com.sun.crypto.provider.RSACipher.bufOfs:I
         8: .line 355
            aload 5
            areturn
        end local 1 // byte[] data
         9: .line 357
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.buffer:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.bufOfs:I
            invokestatic sun.security.rsa.RSACore.convert:([BII)[B
            astore 2 /* verifyBuffer */
        start local 2 // byte[] verifyBuffer
        10: .line 358
            aload 2 /* verifyBuffer */
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.publicKey:Ljava/security/interfaces/RSAPublicKey;
            invokestatic sun.security.rsa.RSACore.rsa:([BLjava/security/interfaces/RSAPublicKey;)[B
            astore 1 /* data */
        start local 1 // byte[] data
        11: .line 359
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.padding:Lsun/security/rsa/RSAPadding;
            aload 1 /* data */
            invokevirtual sun.security.rsa.RSAPadding.unpad:([B)[B
            astore 5
        12: .line 371
            aload 0 /* this */
            iconst_0
            putfield com.sun.crypto.provider.RSACipher.bufOfs:I
        13: .line 359
            aload 5
            areturn
        end local 2 // byte[] verifyBuffer
        end local 1 // byte[] data
        14: .line 361
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.padding:Lsun/security/rsa/RSAPadding;
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.buffer:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.bufOfs:I
            invokevirtual sun.security.rsa.RSAPadding.pad:([BII)[B
            astore 1 /* data */
        start local 1 // byte[] data
        15: .line 362
            aload 1 /* data */
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.publicKey:Ljava/security/interfaces/RSAPublicKey;
            invokestatic sun.security.rsa.RSACore.rsa:([BLjava/security/interfaces/RSAPublicKey;)[B
            astore 5
        16: .line 371
            aload 0 /* this */
            iconst_0
            putfield com.sun.crypto.provider.RSACipher.bufOfs:I
        17: .line 362
            aload 5
            areturn
        end local 1 // byte[] data
        18: .line 364
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.buffer:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.bufOfs:I
            invokestatic sun.security.rsa.RSACore.convert:([BII)[B
            astore 3 /* decryptBuffer */
        start local 3 // byte[] decryptBuffer
        19: .line 365
            aload 3 /* decryptBuffer */
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.privateKey:Ljava/security/interfaces/RSAPrivateKey;
            iconst_0
            invokestatic sun.security.rsa.RSACore.rsa:([BLjava/security/interfaces/RSAPrivateKey;Z)[B
            astore 1 /* data */
        start local 1 // byte[] data
        20: .line 366
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.padding:Lsun/security/rsa/RSAPadding;
            aload 1 /* data */
            invokevirtual sun.security.rsa.RSAPadding.unpad:([B)[B
            astore 5
        21: .line 371
            aload 0 /* this */
            iconst_0
            putfield com.sun.crypto.provider.RSACipher.bufOfs:I
        22: .line 366
            aload 5
            areturn
        end local 3 // byte[] decryptBuffer
        end local 1 // byte[] data
        23: .line 368
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            ldc "Internal error"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        24: .line 370
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 4
        25: .line 371
            aload 0 /* this */
            iconst_0
            putfield com.sun.crypto.provider.RSACipher.bufOfs:I
        26: .line 372
            aload 4
            athrow
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   27     0           this  Lcom/sun/crypto/provider/RSACipher;
            6    9     1           data  [B
           11   14     1           data  [B
           15   18     1           data  [B
           20   23     1           data  [B
           10   14     2   verifyBuffer  [B
           19   23     3  decryptBuffer  [B
      Exception table:
        from    to  target  type
           4     7      24  any
           9    12      24  any
          14    16      24  any
          18    21      24  any
          23    24      24  any
    Exceptions:
      throws javax.crypto.BadPaddingException, javax.crypto.IllegalBlockSizeException

  protected byte[] engineUpdate(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.sun.crypto.provider.RSACipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
         0: .line 377
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            invokevirtual com.sun.crypto.provider.RSACipher.update:([BII)V
         1: .line 378
            getstatic com.sun.crypto.provider.RSACipher.B0:[B
            areturn
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/sun/crypto/provider/RSACipher;
            0    2     1     in  [B
            0    2     2  inOfs  I
            0    2     3  inLen  I
    MethodParameters:
       Name  Flags
      in     
      inOfs  
      inLen  

  protected int engineUpdate(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=6, args_size=6
        start local 0 // com.sun.crypto.provider.RSACipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
        start local 4 // byte[] out
        start local 5 // int outOfs
         0: .line 384
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            invokevirtual com.sun.crypto.provider.RSACipher.update:([BII)V
         1: .line 385
            iconst_0
            ireturn
        end local 5 // int outOfs
        end local 4 // byte[] out
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/sun/crypto/provider/RSACipher;
            0    2     1      in  [B
            0    2     2   inOfs  I
            0    2     3   inLen  I
            0    2     4     out  [B
            0    2     5  outOfs  I
    MethodParameters:
        Name  Flags
      in      
      inOfs   
      inLen   
      out     
      outOfs  

  protected byte[] engineDoFinal(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.sun.crypto.provider.RSACipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
         0: .line 391
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            invokevirtual com.sun.crypto.provider.RSACipher.update:([BII)V
         1: .line 392
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.RSACipher.doFinal:()[B
            areturn
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/sun/crypto/provider/RSACipher;
            0    2     1     in  [B
            0    2     2  inOfs  I
            0    2     3  inLen  I
    Exceptions:
      throws javax.crypto.BadPaddingException, javax.crypto.IllegalBlockSizeException
    MethodParameters:
       Name  Flags
      in     
      inOfs  
      inLen  

  protected int engineDoFinal(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=8, args_size=6
        start local 0 // com.sun.crypto.provider.RSACipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
        start local 4 // byte[] out
        start local 5 // int outOfs
         0: .line 399
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.outputSize:I
            aload 4 /* out */
            arraylength
            iload 5 /* outOfs */
            isub
            if_icmple 4
         1: .line 400
            new javax.crypto.ShortBufferException
            dup
         2: .line 401
            new java.lang.StringBuilder
            dup
            ldc "Need "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.outputSize:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " bytes for output"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 400
            invokespecial javax.crypto.ShortBufferException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 403
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            invokevirtual com.sun.crypto.provider.RSACipher.update:([BII)V
         5: .line 404
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.RSACipher.doFinal:()[B
            astore 6 /* result */
        start local 6 // byte[] result
         6: .line 405
            aload 6 /* result */
            arraylength
            istore 7 /* n */
        start local 7 // int n
         7: .line 406
            aload 6 /* result */
            iconst_0
            aload 4 /* out */
            iload 5 /* outOfs */
            iload 7 /* n */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 407
            iload 7 /* n */
            ireturn
        end local 7 // int n
        end local 6 // byte[] result
        end local 5 // int outOfs
        end local 4 // byte[] out
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/sun/crypto/provider/RSACipher;
            0    9     1      in  [B
            0    9     2   inOfs  I
            0    9     3   inLen  I
            0    9     4     out  [B
            0    9     5  outOfs  I
            6    9     6  result  [B
            7    9     7       n  I
    Exceptions:
      throws javax.crypto.ShortBufferException, javax.crypto.BadPaddingException, javax.crypto.IllegalBlockSizeException
    MethodParameters:
        Name  Flags
      in      
      inOfs   
      inLen   
      out     
      outOfs  

  protected byte[] engineWrap(java.security.Key);
    descriptor: (Ljava/security/Key;)[B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // com.sun.crypto.provider.RSACipher this
        start local 1 // java.security.Key key
         0: .line 413
            aload 1 /* key */
            invokeinterface java.security.Key.getEncoded:()[B
            astore 2 /* encoded */
        start local 2 // byte[] encoded
         1: .line 414
            aload 2 /* encoded */
            ifnull 2
            aload 2 /* encoded */
            arraylength
            ifne 3
         2: .line 415
      StackMap locals: byte[]
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            ldc "Could not obtain encoded key"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 417
      StackMap locals:
      StackMap stack:
            aload 2 /* encoded */
            arraylength
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.buffer:[B
            arraylength
            if_icmple 5
         4: .line 418
            new java.security.InvalidKeyException
            dup
            ldc "Key is too long for wrapping"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 420
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* encoded */
            iconst_0
            aload 2 /* encoded */
            arraylength
            invokevirtual com.sun.crypto.provider.RSACipher.update:([BII)V
         6: .line 422
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.RSACipher.doFinal:()[B
         7: areturn
         8: .line 423
      StackMap locals:
      StackMap stack: javax.crypto.BadPaddingException
            astore 3 /* e */
        start local 3 // javax.crypto.BadPaddingException e
         9: .line 425
            new java.security.InvalidKeyException
            dup
            ldc "Wrapping failed"
            aload 3 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 3 // javax.crypto.BadPaddingException e
        end local 2 // byte[] encoded
        end local 1 // java.security.Key key
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lcom/sun/crypto/provider/RSACipher;
            0   10     1      key  Ljava/security/Key;
            1   10     2  encoded  [B
            9   10     3        e  Ljavax/crypto/BadPaddingException;
      Exception table:
        from    to  target  type
           6     7       8  Class javax.crypto.BadPaddingException
    Exceptions:
      throws java.security.InvalidKeyException, javax.crypto.IllegalBlockSizeException
    MethodParameters:
      Name  Flags
      key   

  protected java.security.Key engineUnwrap(byte[], java.lang.String, int);
    descriptor: ([BLjava/lang/String;I)Ljava/security/Key;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=8, args_size=4
        start local 0 // com.sun.crypto.provider.RSACipher this
        start local 1 // byte[] wrappedKey
        start local 2 // java.lang.String algorithm
        start local 3 // int type
         0: .line 433
            aload 1 /* wrappedKey */
            arraylength
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.buffer:[B
            arraylength
            if_icmple 2
         1: .line 434
            new java.security.InvalidKeyException
            dup
            ldc "Key is too long for unwrapping"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 438
      StackMap locals:
      StackMap stack:
            aload 2 /* algorithm */
            ldc "TlsRsaPremasterSecret"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
         3: .line 437
            istore 4 /* isTlsRsaPremasterSecret */
        start local 4 // boolean isTlsRsaPremasterSecret
         4: .line 439
            aconst_null
            astore 5 /* failover */
        start local 5 // java.lang.Exception failover
         5: .line 440
            aconst_null
            astore 6 /* encoded */
        start local 6 // byte[] encoded
         6: .line 442
            aload 0 /* this */
            aload 1 /* wrappedKey */
            iconst_0
            aload 1 /* wrappedKey */
            arraylength
            invokevirtual com.sun.crypto.provider.RSACipher.update:([BII)V
         7: .line 444
            aload 0 /* this */
            invokevirtual com.sun.crypto.provider.RSACipher.doFinal:()[B
            astore 6 /* encoded */
         8: .line 445
            goto 16
      StackMap locals: com.sun.crypto.provider.RSACipher byte[] java.lang.String int int java.lang.Exception byte[]
      StackMap stack: javax.crypto.BadPaddingException
         9: astore 7 /* e */
        start local 7 // javax.crypto.BadPaddingException e
        10: .line 446
            iload 4 /* isTlsRsaPremasterSecret */
            ifeq 13
        11: .line 447
            aload 7 /* e */
            astore 5 /* failover */
        12: .line 448
            goto 16
        13: .line 449
      StackMap locals: javax.crypto.BadPaddingException
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            ldc "Unwrapping failed"
            aload 7 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 7 // javax.crypto.BadPaddingException e
        14: .line 451
      StackMap locals: com.sun.crypto.provider.RSACipher byte[] java.lang.String int int java.lang.Exception byte[]
      StackMap stack: javax.crypto.IllegalBlockSizeException
            astore 7 /* e */
        start local 7 // javax.crypto.IllegalBlockSizeException e
        15: .line 453
            new java.security.InvalidKeyException
            dup
            ldc "Unwrapping failed"
            aload 7 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 7 // javax.crypto.IllegalBlockSizeException e
        16: .line 456
      StackMap locals:
      StackMap stack:
            iload 4 /* isTlsRsaPremasterSecret */
            ifeq 26
        17: .line 457
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
            instanceof sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec
            ifne 21
        18: .line 458
            new java.lang.IllegalStateException
            dup
        19: .line 459
            ldc "No TlsRsaPremasterSecretParameterSpec specified"
        20: .line 458
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        21: .line 464
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
            checkcast sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec
            invokevirtual sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec.getClientVersion:()I
        22: .line 465
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
            checkcast sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec
            invokevirtual sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec.getServerVersion:()I
        23: .line 466
            aload 0 /* this */
            getfield com.sun.crypto.provider.RSACipher.random:Ljava/security/SecureRandom;
            aload 6 /* encoded */
            aload 5 /* failover */
            ifnull 24
            iconst_1
            goto 25
      StackMap locals: com.sun.crypto.provider.RSACipher byte[] java.lang.String int int java.lang.Exception byte[]
      StackMap stack: int int java.security.SecureRandom byte[]
        24: iconst_0
        25: .line 463
      StackMap locals: com.sun.crypto.provider.RSACipher byte[] java.lang.String int int java.lang.Exception byte[]
      StackMap stack: int int java.security.SecureRandom byte[] int
            invokestatic sun.security.util.KeyUtil.checkTlsPreMasterSecretKey:(IILjava/security/SecureRandom;[BZ)[B
            astore 6 /* encoded */
        26: .line 469
      StackMap locals:
      StackMap stack:
            aload 6 /* encoded */
            aload 2 /* algorithm */
            iload 3 /* type */
            invokestatic com.sun.crypto.provider.ConstructKeys.constructKey:([BLjava/lang/String;I)Ljava/security/Key;
            areturn
        end local 6 // byte[] encoded
        end local 5 // java.lang.Exception failover
        end local 4 // boolean isTlsRsaPremasterSecret
        end local 3 // int type
        end local 2 // java.lang.String algorithm
        end local 1 // byte[] wrappedKey
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0   27     0                     this  Lcom/sun/crypto/provider/RSACipher;
            0   27     1               wrappedKey  [B
            0   27     2                algorithm  Ljava/lang/String;
            0   27     3                     type  I
            4   27     4  isTlsRsaPremasterSecret  Z
            5   27     5                 failover  Ljava/lang/Exception;
            6   27     6                  encoded  [B
           10   14     7                        e  Ljavax/crypto/BadPaddingException;
           15   16     7                        e  Ljavax/crypto/IllegalBlockSizeException;
      Exception table:
        from    to  target  type
           7     8       9  Class javax.crypto.BadPaddingException
           7     8      14  Class javax.crypto.IllegalBlockSizeException
    Exceptions:
      throws java.security.InvalidKeyException, java.security.NoSuchAlgorithmException
    MethodParameters:
            Name  Flags
      wrappedKey  
      algorithm   
      type        

  protected int engineGetKeySize(java.security.Key);
    descriptor: (Ljava/security/Key;)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=3, args_size=2
        start local 0 // com.sun.crypto.provider.RSACipher this
        start local 1 // java.security.Key key
         0: .line 474
            aload 1 /* key */
            invokestatic sun.security.rsa.RSAKeyFactory.toRSAKey:(Ljava/security/Key;)Ljava/security/interfaces/RSAKey;
            astore 2 /* rsaKey */
        start local 2 // java.security.interfaces.RSAKey rsaKey
         1: .line 475
            aload 2 /* rsaKey */
            invokeinterface java.security.interfaces.RSAKey.getModulus:()Ljava/math/BigInteger;
            invokevirtual java.math.BigInteger.bitLength:()I
            ireturn
        end local 2 // java.security.interfaces.RSAKey rsaKey
        end local 1 // java.security.Key key
        end local 0 // com.sun.crypto.provider.RSACipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/sun/crypto/provider/RSACipher;
            0    2     1     key  Ljava/security/Key;
            1    2     2  rsaKey  Ljava/security/interfaces/RSAKey;
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
      Name  Flags
      key   
}
SourceFile: "RSACipher.java"
InnerClasses:
  public Service = java.security.Provider$Service of java.security.Provider
  public final PSpecified = javax.crypto.spec.PSource$PSpecified of javax.crypto.spec.PSource