public final class sun.security.rsa.RSAPadding
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: sun.security.rsa.RSAPadding
  super_class: java.lang.Object
{
  public static final int PAD_BLOCKTYPE_1;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final int PAD_BLOCKTYPE_2;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  public static final int PAD_NONE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 3

  public static final int PAD_OAEP_MGF1;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 4

  private final int type;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int paddedSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private final int maxDataSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.security.MessageDigest md;
    descriptor: Ljava/security/MessageDigest;
    flags: (0x0002) ACC_PRIVATE

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

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

  private static final java.util.Map<java.lang.String, byte[]> emptyHashes;
    descriptor: Ljava/util/Map;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/String;[B>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 205
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            invokestatic java.util.Collections.synchronizedMap:(Ljava/util/Map;)Ljava/util/Map;
         1: .line 204
            putstatic sun.security.rsa.RSAPadding.emptyHashes:Ljava/util/Map;
         2: .line 205
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static sun.security.rsa.RSAPadding getInstance(int, int);
    descriptor: (II)Lsun/security/rsa/RSAPadding;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // int type
        start local 1 // int paddedSize
         0: .line 120
            new sun.security.rsa.RSAPadding
            dup
            iload 0 /* type */
            iload 1 /* paddedSize */
            aconst_null
            aconst_null
            invokespecial sun.security.rsa.RSAPadding.<init>:(IILjava/security/SecureRandom;Ljavax/crypto/spec/OAEPParameterSpec;)V
            areturn
        end local 1 // int paddedSize
        end local 0 // int type
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        type  I
            0    1     1  paddedSize  I
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
            Name  Flags
      type        
      paddedSize  

  public static sun.security.rsa.RSAPadding getInstance(int, int, java.security.SecureRandom);
    descriptor: (IILjava/security/SecureRandom;)Lsun/security/rsa/RSAPadding;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // int type
        start local 1 // int paddedSize
        start local 2 // java.security.SecureRandom random
         0: .line 130
            new sun.security.rsa.RSAPadding
            dup
            iload 0 /* type */
            iload 1 /* paddedSize */
            aload 2 /* random */
            aconst_null
            invokespecial sun.security.rsa.RSAPadding.<init>:(IILjava/security/SecureRandom;Ljavax/crypto/spec/OAEPParameterSpec;)V
            areturn
        end local 2 // java.security.SecureRandom random
        end local 1 // int paddedSize
        end local 0 // int type
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        type  I
            0    1     1  paddedSize  I
            0    1     2      random  Ljava/security/SecureRandom;
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
            Name  Flags
      type        
      paddedSize  
      random      

  public static sun.security.rsa.RSAPadding getInstance(int, int, java.security.SecureRandom, javax.crypto.spec.OAEPParameterSpec);
    descriptor: (IILjava/security/SecureRandom;Ljavax/crypto/spec/OAEPParameterSpec;)Lsun/security/rsa/RSAPadding;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // int type
        start local 1 // int paddedSize
        start local 2 // java.security.SecureRandom random
        start local 3 // javax.crypto.spec.OAEPParameterSpec spec
         0: .line 140
            new sun.security.rsa.RSAPadding
            dup
            iload 0 /* type */
            iload 1 /* paddedSize */
            aload 2 /* random */
            aload 3 /* spec */
            invokespecial sun.security.rsa.RSAPadding.<init>:(IILjava/security/SecureRandom;Ljavax/crypto/spec/OAEPParameterSpec;)V
            areturn
        end local 3 // javax.crypto.spec.OAEPParameterSpec spec
        end local 2 // java.security.SecureRandom random
        end local 1 // int paddedSize
        end local 0 // int type
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        type  I
            0    1     1  paddedSize  I
            0    1     2      random  Ljava/security/SecureRandom;
            0    1     3        spec  Ljavax/crypto/spec/OAEPParameterSpec;
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
            Name  Flags
      type        
      paddedSize  
      random      
      spec        

  private void <init>(int, int, java.security.SecureRandom, javax.crypto.spec.OAEPParameterSpec);
    descriptor: (IILjava/security/SecureRandom;Ljavax/crypto/spec/OAEPParameterSpec;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=11, args_size=5
        start local 0 // sun.security.rsa.RSAPadding this
        start local 1 // int type
        start local 2 // int paddedSize
        start local 3 // java.security.SecureRandom random
        start local 4 // javax.crypto.spec.OAEPParameterSpec spec
         0: .line 144
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 147
            aload 0 /* this */
            iload 1 /* type */
            putfield sun.security.rsa.RSAPadding.type:I
         2: .line 148
            aload 0 /* this */
            iload 2 /* paddedSize */
            putfield sun.security.rsa.RSAPadding.paddedSize:I
         3: .line 149
            aload 0 /* this */
            aload 3 /* random */
            putfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
         4: .line 150
            iload 2 /* paddedSize */
            bipush 64
            if_icmpge 6
         5: .line 152
            new java.security.InvalidKeyException
            dup
            ldc "Padded size must be at least 64"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 154
      StackMap locals: sun.security.rsa.RSAPadding int int java.security.SecureRandom javax.crypto.spec.OAEPParameterSpec
      StackMap stack:
            iload 1 /* type */
            tableswitch { // 1 - 4
                    1: 7
                    2: 7
                    3: 9
                    4: 11
              default: 45
          }
         7: .line 157
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* paddedSize */
            bipush 11
            isub
            putfield sun.security.rsa.RSAPadding.maxDataSize:I
         8: .line 158
            goto 46
         9: .line 160
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* paddedSize */
            putfield sun.security.rsa.RSAPadding.maxDataSize:I
        10: .line 161
            goto 46
        11: .line 163
      StackMap locals:
      StackMap stack:
            ldc "SHA-1"
            astore 5 /* mdName */
        start local 5 // java.lang.String mdName
        12: .line 164
            aload 5 /* mdName */
            astore 6 /* mgfMdName */
        start local 6 // java.lang.String mgfMdName
        13: .line 165
            aconst_null
            astore 7 /* digestInput */
        start local 7 // byte[] digestInput
        14: .line 167
            aload 4 /* spec */
            ifnull 31
        15: .line 168
            aload 4 /* spec */
            invokevirtual javax.crypto.spec.OAEPParameterSpec.getDigestAlgorithm:()Ljava/lang/String;
            astore 5 /* mdName */
        16: .line 169
            aload 4 /* spec */
            invokevirtual javax.crypto.spec.OAEPParameterSpec.getMGFAlgorithm:()Ljava/lang/String;
            astore 8 /* mgfName */
        start local 8 // java.lang.String mgfName
        17: .line 170
            aload 8 /* mgfName */
            ldc "MGF1"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 21
        18: .line 171
            new java.security.InvalidAlgorithmParameterException
            dup
        19: .line 172
            new java.lang.StringBuilder
            dup
            ldc "Unsupported MGF algo: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 8 /* mgfName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        20: .line 171
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        21: .line 174
      StackMap locals: sun.security.rsa.RSAPadding int int java.security.SecureRandom javax.crypto.spec.OAEPParameterSpec java.lang.String java.lang.String byte[] java.lang.String
      StackMap stack:
            aload 4 /* spec */
            invokevirtual javax.crypto.spec.OAEPParameterSpec.getMGFParameters:()Ljava/security/spec/AlgorithmParameterSpec;
            checkcast java.security.spec.MGF1ParameterSpec
        22: .line 175
            invokevirtual java.security.spec.MGF1ParameterSpec.getDigestAlgorithm:()Ljava/lang/String;
        23: .line 174
            astore 6 /* mgfMdName */
        24: .line 176
            aload 4 /* spec */
            invokevirtual javax.crypto.spec.OAEPParameterSpec.getPSource:()Ljavax/crypto/spec/PSource;
            astore 9 /* pSrc */
        start local 9 // javax.crypto.spec.PSource pSrc
        25: .line 177
            aload 9 /* pSrc */
            invokevirtual javax.crypto.spec.PSource.getAlgorithm:()Ljava/lang/String;
            astore 10 /* pSrcAlgo */
        start local 10 // java.lang.String pSrcAlgo
        26: .line 178
            aload 10 /* pSrcAlgo */
            ldc "PSpecified"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 30
        27: .line 179
            new java.security.InvalidAlgorithmParameterException
            dup
        28: .line 180
            new java.lang.StringBuilder
            dup
            ldc "Unsupported pSource algo: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 10 /* pSrcAlgo */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        29: .line 179
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        30: .line 182
      StackMap locals: javax.crypto.spec.PSource java.lang.String
      StackMap stack:
            aload 9 /* pSrc */
            checkcast javax.crypto.spec.PSource$PSpecified
            invokevirtual javax.crypto.spec.PSource$PSpecified.getValue:()[B
            astore 7 /* digestInput */
        end local 10 // java.lang.String pSrcAlgo
        end local 9 // javax.crypto.spec.PSource pSrc
        end local 8 // java.lang.String mgfName
        31: .line 184
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 5 /* mdName */
            invokestatic java.security.MessageDigest.getInstance:(Ljava/lang/String;)Ljava/security/MessageDigest;
            putfield sun.security.rsa.RSAPadding.md:Ljava/security/MessageDigest;
        32: .line 185
            aload 0 /* this */
            new sun.security.rsa.MGF1
            dup
            aload 6 /* mgfMdName */
            invokespecial sun.security.rsa.MGF1.<init>:(Ljava/lang/String;)V
            putfield sun.security.rsa.RSAPadding.mgf:Lsun/security/rsa/MGF1;
        33: .line 186
            goto 36
      StackMap locals:
      StackMap stack: java.security.NoSuchAlgorithmException
        34: astore 8 /* e */
        start local 8 // java.security.NoSuchAlgorithmException e
        35: .line 187
            new java.security.InvalidKeyException
            dup
            ldc "Digest not available"
            aload 8 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 8 // java.security.NoSuchAlgorithmException e
        36: .line 189
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.md:Ljava/security/MessageDigest;
            aload 7 /* digestInput */
            invokestatic sun.security.rsa.RSAPadding.getInitialHash:(Ljava/security/MessageDigest;[B)[B
            putfield sun.security.rsa.RSAPadding.lHash:[B
        37: .line 190
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.lHash:[B
            arraylength
            istore 8 /* digestLen */
        start local 8 // int digestLen
        38: .line 191
            aload 0 /* this */
            iload 2 /* paddedSize */
            iconst_2
            isub
            iconst_2
            iload 8 /* digestLen */
            imul
            isub
            putfield sun.security.rsa.RSAPadding.maxDataSize:I
        39: .line 192
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.maxDataSize:I
            ifgt 46
        40: .line 193
            new java.security.InvalidKeyException
            dup
        41: .line 194
            new java.lang.StringBuilder
            dup
            ldc "Key is too short for encryption using OAEPPadding with "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        42: .line 195
            aload 5 /* mdName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " and "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.mgf:Lsun/security/rsa/MGF1;
            invokevirtual sun.security.rsa.MGF1.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        43: .line 194
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        44: .line 193
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        end local 8 // int digestLen
        end local 7 // byte[] digestInput
        end local 6 // java.lang.String mgfMdName
        end local 5 // java.lang.String mdName
        45: .line 199
      StackMap locals:
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid padding: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* type */
            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
        46: .line 201
      StackMap locals:
      StackMap stack:
            return
        end local 4 // javax.crypto.spec.OAEPParameterSpec spec
        end local 3 // java.security.SecureRandom random
        end local 2 // int paddedSize
        end local 1 // int type
        end local 0 // sun.security.rsa.RSAPadding this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   47     0         this  Lsun/security/rsa/RSAPadding;
            0   47     1         type  I
            0   47     2   paddedSize  I
            0   47     3       random  Ljava/security/SecureRandom;
            0   47     4         spec  Ljavax/crypto/spec/OAEPParameterSpec;
           12   45     5       mdName  Ljava/lang/String;
           13   45     6    mgfMdName  Ljava/lang/String;
           14   45     7  digestInput  [B
           17   31     8      mgfName  Ljava/lang/String;
           25   31     9         pSrc  Ljavax/crypto/spec/PSource;
           26   31    10     pSrcAlgo  Ljava/lang/String;
           35   36     8            e  Ljava/security/NoSuchAlgorithmException;
           38   45     8    digestLen  I
      Exception table:
        from    to  target  type
          14    33      34  Class java.security.NoSuchAlgorithmException
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
            Name  Flags
      type        
      paddedSize  
      random      
      spec        

  private static byte[] getInitialHash(java.security.MessageDigest, byte[]);
    descriptor: (Ljava/security/MessageDigest;[B)[B
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // java.security.MessageDigest md
        start local 1 // byte[] digestInput
         0: .line 217
            aload 1 /* digestInput */
            ifnull 1
            aload 1 /* digestInput */
            arraylength
            ifne 7
         1: .line 218
      StackMap locals:
      StackMap stack:
            aload 0 /* md */
            invokevirtual java.security.MessageDigest.getAlgorithm:()Ljava/lang/String;
            astore 3 /* digestName */
        start local 3 // java.lang.String digestName
         2: .line 219
            getstatic sun.security.rsa.RSAPadding.emptyHashes:Ljava/util/Map;
            aload 3 /* digestName */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast byte[]
            astore 2 /* result */
        start local 2 // byte[] result
         3: .line 220
            aload 2 /* result */
            ifnonnull 8
         4: .line 221
            aload 0 /* md */
            invokevirtual java.security.MessageDigest.digest:()[B
            astore 2 /* result */
         5: .line 222
            getstatic sun.security.rsa.RSAPadding.emptyHashes:Ljava/util/Map;
            aload 3 /* digestName */
            aload 2 /* result */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 3 // java.lang.String digestName
         6: .line 224
            goto 8
        end local 2 // byte[] result
         7: .line 225
      StackMap locals:
      StackMap stack:
            aload 0 /* md */
            aload 1 /* digestInput */
            invokevirtual java.security.MessageDigest.digest:([B)[B
            astore 2 /* result */
        start local 2 // byte[] result
         8: .line 227
      StackMap locals: byte[]
      StackMap stack:
            aload 2 /* result */
            areturn
        end local 2 // byte[] result
        end local 1 // byte[] digestInput
        end local 0 // java.security.MessageDigest md
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0           md  Ljava/security/MessageDigest;
            0    9     1  digestInput  [B
            3    7     2       result  [B
            8    9     2       result  [B
            2    6     3   digestName  Ljava/lang/String;
    MethodParameters:
             Name  Flags
      md           
      digestInput  

  public int getMaxDataSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.rsa.RSAPadding this
         0: .line 235
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.maxDataSize:I
            ireturn
        end local 0 // sun.security.rsa.RSAPadding this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/rsa/RSAPadding;

  public byte[] pad(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // sun.security.rsa.RSAPadding this
        start local 1 // byte[] data
        start local 2 // int ofs
        start local 3 // int len
         0: .line 243
            aload 0 /* this */
            aload 1 /* data */
            iload 2 /* ofs */
            iload 3 /* len */
            invokestatic sun.security.rsa.RSACore.convert:([BII)[B
            invokevirtual sun.security.rsa.RSAPadding.pad:([B)[B
            areturn
        end local 3 // int len
        end local 2 // int ofs
        end local 1 // byte[] data
        end local 0 // sun.security.rsa.RSAPadding this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/rsa/RSAPadding;
            0    1     1  data  [B
            0    1     2   ofs  I
            0    1     3   len  I
    Exceptions:
      throws javax.crypto.BadPaddingException
    MethodParameters:
      Name  Flags
      data  
      ofs   
      len   

  public byte[] pad(byte[]);
    descriptor: ([B)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // sun.security.rsa.RSAPadding this
        start local 1 // byte[] data
         0: .line 250
            aload 1 /* data */
            arraylength
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.maxDataSize:I
            if_icmple 5
         1: .line 251
            new javax.crypto.BadPaddingException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Data must be shorter than "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         2: .line 252
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.maxDataSize:I
            iconst_1
            iadd
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " bytes but received "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         3: .line 253
            aload 1 /* data */
            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;
         4: .line 251
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 255
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.type:I
            tableswitch { // 1 - 4
                    1: 7
                    2: 7
                    3: 6
                    4: 8
              default: 9
          }
         6: .line 257
      StackMap locals:
      StackMap stack:
            aload 1 /* data */
            areturn
         7: .line 260
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* data */
            invokevirtual sun.security.rsa.RSAPadding.padV15:([B)[B
            areturn
         8: .line 262
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* data */
            invokevirtual sun.security.rsa.RSAPadding.padOAEP:([B)[B
            areturn
         9: .line 264
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        end local 1 // byte[] data
        end local 0 // sun.security.rsa.RSAPadding this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lsun/security/rsa/RSAPadding;
            0   10     1  data  [B
    Exceptions:
      throws javax.crypto.BadPaddingException
    MethodParameters:
      Name  Flags
      data  

  public byte[] unpad(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // sun.security.rsa.RSAPadding this
        start local 1 // byte[] padded
        start local 2 // int ofs
        start local 3 // int len
         0: .line 273
            aload 0 /* this */
            aload 1 /* padded */
            iload 2 /* ofs */
            iload 3 /* len */
            invokestatic sun.security.rsa.RSACore.convert:([BII)[B
            invokevirtual sun.security.rsa.RSAPadding.unpad:([B)[B
            areturn
        end local 3 // int len
        end local 2 // int ofs
        end local 1 // byte[] padded
        end local 0 // sun.security.rsa.RSAPadding this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lsun/security/rsa/RSAPadding;
            0    1     1  padded  [B
            0    1     2     ofs  I
            0    1     3     len  I
    Exceptions:
      throws javax.crypto.BadPaddingException
    MethodParameters:
        Name  Flags
      padded  
      ofs     
      len     

  public byte[] unpad(byte[]);
    descriptor: ([B)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // sun.security.rsa.RSAPadding this
        start local 1 // byte[] padded
         0: .line 280
            aload 1 /* padded */
            arraylength
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.paddedSize:I
            if_icmpeq 5
         1: .line 281
            new javax.crypto.BadPaddingException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Decryption error.The padded array length ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         2: .line 282
            aload 1 /* padded */
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         3: .line 283
            ldc ") is not the specified padded size ("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.paddedSize:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         4: .line 281
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 285
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.type:I
            tableswitch { // 1 - 4
                    1: 7
                    2: 7
                    3: 6
                    4: 8
              default: 9
          }
         6: .line 287
      StackMap locals:
      StackMap stack:
            aload 1 /* padded */
            areturn
         7: .line 290
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* padded */
            invokevirtual sun.security.rsa.RSAPadding.unpadV15:([B)[B
            areturn
         8: .line 292
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* padded */
            invokevirtual sun.security.rsa.RSAPadding.unpadOAEP:([B)[B
            areturn
         9: .line 294
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        end local 1 // byte[] padded
        end local 0 // sun.security.rsa.RSAPadding this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lsun/security/rsa/RSAPadding;
            0   10     1  padded  [B
    Exceptions:
      throws javax.crypto.BadPaddingException
    MethodParameters:
        Name  Flags
      padded  

  private byte[] padV15(byte[]);
    descriptor: ([B)[B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // sun.security.rsa.RSAPadding this
        start local 1 // byte[] data
         0: .line 302
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.paddedSize:I
            newarray 8
            astore 2 /* padded */
        start local 2 // byte[] padded
         1: .line 303
            aload 1 /* data */
            iconst_0
            aload 2 /* padded */
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.paddedSize:I
            aload 1 /* data */
            arraylength
            isub
         2: .line 304
            aload 1 /* data */
            arraylength
         3: .line 303
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 305
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.paddedSize:I
            iconst_3
            isub
            aload 1 /* data */
            arraylength
            isub
            istore 3 /* psSize */
        start local 3 // int psSize
         5: .line 306
            iconst_0
            istore 4 /* k */
        start local 4 // int k
         6: .line 307
            aload 2 /* padded */
            iload 4 /* k */
            iinc 4 /* k */ 1
            iconst_0
            bastore
         7: .line 308
            aload 2 /* padded */
            iload 4 /* k */
            iinc 4 /* k */ 1
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.type:I
            i2b
            bastore
         8: .line 309
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.type:I
            iconst_1
            if_icmpne 13
         9: .line 311
            goto 11
        10: .line 312
      StackMap locals: byte[] int int
      StackMap stack:
            aload 2 /* padded */
            iload 4 /* k */
            iinc 4 /* k */ 1
            iconst_m1
            bastore
        11: .line 311
      StackMap locals:
      StackMap stack:
            iload 3 /* psSize */
            iinc 3 /* psSize */ -1
            ifgt 10
        12: .line 314
            goto 26
        13: .line 316
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
            ifnonnull 25
        14: .line 317
            aload 0 /* this */
            invokestatic sun.security.jca.JCAUtil.getSecureRandom:()Ljava/security/SecureRandom;
            putfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
        15: .line 321
            goto 25
        16: .line 324
      StackMap locals:
      StackMap stack:
            iload 3 /* psSize */
            iconst_4
            iadd
            newarray 8
            astore 5 /* r */
        start local 5 // byte[] r
        17: .line 325
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
            aload 5 /* r */
            invokevirtual java.security.SecureRandom.nextBytes:([B)V
        18: .line 326
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        19: goto 24
        20: .line 327
      StackMap locals: byte[] int
      StackMap stack:
            aload 5 /* r */
            iload 6 /* i */
            baload
            ifeq 23
        21: .line 328
            aload 2 /* padded */
            iload 4 /* k */
            iinc 4 /* k */ 1
            aload 5 /* r */
            iload 6 /* i */
            baload
            bastore
        22: .line 329
            iinc 3 /* psSize */ -1
        23: .line 326
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        24: iload 6 /* i */
            aload 5 /* r */
            arraylength
            if_icmpge 25
            iload 3 /* psSize */
            ifgt 20
        end local 6 // int i
        end local 5 // byte[] r
        25: .line 321
      StackMap locals:
      StackMap stack:
            iload 3 /* psSize */
            ifgt 16
        26: .line 334
      StackMap locals:
      StackMap stack:
            aload 2 /* padded */
            areturn
        end local 4 // int k
        end local 3 // int psSize
        end local 2 // byte[] padded
        end local 1 // byte[] data
        end local 0 // sun.security.rsa.RSAPadding this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   27     0    this  Lsun/security/rsa/RSAPadding;
            0   27     1    data  [B
            1   27     2  padded  [B
            5   27     3  psSize  I
            6   27     4       k  I
           17   25     5       r  [B
           19   25     6       i  I
    Exceptions:
      throws javax.crypto.BadPaddingException
    MethodParameters:
      Name  Flags
      data  

  private byte[] unpadV15(byte[]);
    descriptor: ([B)[B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=9, args_size=2
        start local 0 // sun.security.rsa.RSAPadding this
        start local 1 // byte[] padded
         0: .line 343
            iconst_0
            istore 2 /* k */
        start local 2 // int k
         1: .line 344
            iconst_0
            istore 3 /* bp */
        start local 3 // boolean bp
         2: .line 346
            aload 1 /* padded */
            iload 2 /* k */
            iinc 2 /* k */ 1
            baload
            ifeq 4
         3: .line 347
            iconst_1
            istore 3 /* bp */
         4: .line 349
      StackMap locals: int int
      StackMap stack:
            aload 1 /* padded */
            iload 2 /* k */
            iinc 2 /* k */ 1
            baload
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.type:I
            if_icmpeq 6
         5: .line 350
            iconst_1
            istore 3 /* bp */
         6: .line 352
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* p */
        start local 4 // int p
         7: .line 353
            goto 16
         8: .line 354
      StackMap locals: int
      StackMap stack:
            aload 1 /* padded */
            iload 2 /* k */
            iinc 2 /* k */ 1
            baload
            sipush 255
            iand
            istore 5 /* b */
        start local 5 // int b
         9: .line 355
            iload 5 /* b */
            ifne 11
            iload 4 /* p */
            ifne 11
        10: .line 356
            iload 2 /* k */
            istore 4 /* p */
        11: .line 358
      StackMap locals: int
      StackMap stack:
            iload 2 /* k */
            aload 1 /* padded */
            arraylength
            if_icmpne 13
            iload 4 /* p */
            ifne 13
        12: .line 359
            iconst_1
            istore 3 /* bp */
        13: .line 361
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.type:I
            iconst_1
            if_icmpne 16
            iload 5 /* b */
            sipush 255
            if_icmpeq 16
        14: .line 362
            iload 4 /* p */
            ifne 16
        15: .line 363
            iconst_1
            istore 3 /* bp */
        end local 5 // int b
        16: .line 353
      StackMap locals:
      StackMap stack:
            iload 2 /* k */
            aload 1 /* padded */
            arraylength
            if_icmplt 8
        17: .line 366
            aload 1 /* padded */
            arraylength
            iload 4 /* p */
            isub
            istore 5 /* n */
        start local 5 // int n
        18: .line 367
            iload 5 /* n */
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.maxDataSize:I
            if_icmple 20
        19: .line 368
            iconst_1
            istore 3 /* bp */
        20: .line 372
      StackMap locals: int
      StackMap stack:
            iload 4 /* p */
            newarray 8
            astore 6 /* padding */
        start local 6 // byte[] padding
        21: .line 373
            aload 1 /* padded */
            iconst_0
            aload 6 /* padding */
            iconst_0
            iload 4 /* p */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        22: .line 375
            iload 5 /* n */
            newarray 8
            astore 7 /* data */
        start local 7 // byte[] data
        23: .line 376
            aload 1 /* padded */
            iload 4 /* p */
            aload 7 /* data */
            iconst_0
            iload 5 /* n */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        24: .line 378
            new javax.crypto.BadPaddingException
            dup
            ldc "Decryption error"
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            astore 8 /* bpe */
        start local 8 // javax.crypto.BadPaddingException bpe
        25: .line 380
            iload 3 /* bp */
            ifeq 27
        26: .line 381
            aload 8 /* bpe */
            athrow
        27: .line 383
      StackMap locals: byte[] byte[] javax.crypto.BadPaddingException
      StackMap stack:
            aload 7 /* data */
            areturn
        end local 8 // javax.crypto.BadPaddingException bpe
        end local 7 // byte[] data
        end local 6 // byte[] padding
        end local 5 // int n
        end local 4 // int p
        end local 3 // boolean bp
        end local 2 // int k
        end local 1 // byte[] padded
        end local 0 // sun.security.rsa.RSAPadding this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   28     0     this  Lsun/security/rsa/RSAPadding;
            0   28     1   padded  [B
            1   28     2        k  I
            2   28     3       bp  Z
            7   28     4        p  I
            9   16     5        b  I
           18   28     5        n  I
           21   28     6  padding  [B
           23   28     7     data  [B
           25   28     8      bpe  Ljavax/crypto/BadPaddingException;
    Exceptions:
      throws javax.crypto.BadPaddingException
    MethodParameters:
        Name  Flags
      padded  

  private byte[] padOAEP(byte[]);
    descriptor: ([B)[B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=10, args_size=2
        start local 0 // sun.security.rsa.RSAPadding this
        start local 1 // byte[] M
         0: .line 392
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
            ifnonnull 2
         1: .line 393
            aload 0 /* this */
            invokestatic sun.security.jca.JCAUtil.getSecureRandom:()Ljava/security/SecureRandom;
            putfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
         2: .line 395
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.lHash:[B
            arraylength
            istore 2 /* hLen */
        start local 2 // int hLen
         3: .line 399
            iload 2 /* hLen */
            newarray 8
            astore 3 /* seed */
        start local 3 // byte[] seed
         4: .line 400
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
            aload 3 /* seed */
            invokevirtual java.security.SecureRandom.nextBytes:([B)V
         5: .line 403
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.paddedSize:I
            newarray 8
            astore 4 /* EM */
        start local 4 // byte[] EM
         6: .line 406
            iconst_1
            istore 5 /* seedStart */
        start local 5 // int seedStart
         7: .line 407
            iload 2 /* hLen */
            istore 6 /* seedLen */
        start local 6 // int seedLen
         8: .line 410
            aload 3 /* seed */
            iconst_0
            aload 4 /* EM */
            iload 5 /* seedStart */
            iload 6 /* seedLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 414
            iload 2 /* hLen */
            iconst_1
            iadd
            istore 7 /* dbStart */
        start local 7 // int dbStart
        10: .line 415
            aload 4 /* EM */
            arraylength
            iload 7 /* dbStart */
            isub
            istore 8 /* dbLen */
        start local 8 // int dbLen
        11: .line 418
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.paddedSize:I
            aload 1 /* M */
            arraylength
            isub
            istore 9 /* mStart */
        start local 9 // int mStart
        12: .line 425
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.lHash:[B
            iconst_0
            aload 4 /* EM */
            iload 7 /* dbStart */
            iload 2 /* hLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        13: .line 426
            aload 4 /* EM */
            iload 9 /* mStart */
            iconst_1
            isub
            iconst_1
            bastore
        14: .line 427
            aload 1 /* M */
            iconst_0
            aload 4 /* EM */
            iload 9 /* mStart */
            aload 1 /* M */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        15: .line 430
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.mgf:Lsun/security/rsa/MGF1;
            aload 4 /* EM */
            iload 5 /* seedStart */
            iload 6 /* seedLen */
            iload 8 /* dbLen */
            aload 4 /* EM */
            iload 7 /* dbStart */
            invokevirtual sun.security.rsa.MGF1.generateAndXor:([BIII[BI)V
        16: .line 433
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.mgf:Lsun/security/rsa/MGF1;
            aload 4 /* EM */
            iload 7 /* dbStart */
            iload 8 /* dbLen */
            iload 6 /* seedLen */
            aload 4 /* EM */
            iload 5 /* seedStart */
            invokevirtual sun.security.rsa.MGF1.generateAndXor:([BIII[BI)V
        17: .line 435
            aload 4 /* EM */
            areturn
        end local 9 // int mStart
        end local 8 // int dbLen
        end local 7 // int dbStart
        end local 6 // int seedLen
        end local 5 // int seedStart
        end local 4 // byte[] EM
        end local 3 // byte[] seed
        end local 2 // int hLen
        end local 1 // byte[] M
        end local 0 // sun.security.rsa.RSAPadding this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   18     0       this  Lsun/security/rsa/RSAPadding;
            0   18     1          M  [B
            3   18     2       hLen  I
            4   18     3       seed  [B
            6   18     4         EM  [B
            7   18     5  seedStart  I
            8   18     6    seedLen  I
           10   18     7    dbStart  I
           11   18     8      dbLen  I
           12   18     9     mStart  I
    Exceptions:
      throws javax.crypto.BadPaddingException
    MethodParameters:
      Name  Flags
      M     

  private byte[] unpadOAEP(byte[]);
    descriptor: ([B)[B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=15, args_size=2
        start local 0 // sun.security.rsa.RSAPadding this
        start local 1 // byte[] padded
         0: .line 442
            aload 1 /* padded */
            astore 2 /* EM */
        start local 2 // byte[] EM
         1: .line 443
            iconst_0
            istore 3 /* bp */
        start local 3 // boolean bp
         2: .line 444
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.lHash:[B
            arraylength
            istore 4 /* hLen */
        start local 4 // int hLen
         3: .line 446
            aload 2 /* EM */
            iconst_0
            baload
            ifeq 5
         4: .line 447
            iconst_1
            istore 3 /* bp */
         5: .line 450
      StackMap locals: byte[] int int
      StackMap stack:
            iconst_1
            istore 5 /* seedStart */
        start local 5 // int seedStart
         6: .line 451
            iload 4 /* hLen */
            istore 6 /* seedLen */
        start local 6 // int seedLen
         7: .line 453
            iload 4 /* hLen */
            iconst_1
            iadd
            istore 7 /* dbStart */
        start local 7 // int dbStart
         8: .line 454
            aload 2 /* EM */
            arraylength
            iload 7 /* dbStart */
            isub
            istore 8 /* dbLen */
        start local 8 // int dbLen
         9: .line 456
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.mgf:Lsun/security/rsa/MGF1;
            aload 2 /* EM */
            iload 7 /* dbStart */
            iload 8 /* dbLen */
            iload 6 /* seedLen */
            aload 2 /* EM */
            iload 5 /* seedStart */
            invokevirtual sun.security.rsa.MGF1.generateAndXor:([BIII[BI)V
        10: .line 457
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.mgf:Lsun/security/rsa/MGF1;
            aload 2 /* EM */
            iload 5 /* seedStart */
            iload 6 /* seedLen */
            iload 8 /* dbLen */
            aload 2 /* EM */
            iload 7 /* dbStart */
            invokevirtual sun.security.rsa.MGF1.generateAndXor:([BIII[BI)V
        11: .line 460
            iconst_0
            istore 9 /* i */
        start local 9 // int i
        12: goto 16
        13: .line 461
      StackMap locals: sun.security.rsa.RSAPadding byte[] byte[] int int int int int int int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.lHash:[B
            iload 9 /* i */
            baload
            aload 2 /* EM */
            iload 7 /* dbStart */
            iload 9 /* i */
            iadd
            baload
            if_icmpeq 15
        14: .line 462
            iconst_1
            istore 3 /* bp */
        15: .line 460
      StackMap locals:
      StackMap stack:
            iinc 9 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 9 /* i */
            iload 4 /* hLen */
            if_icmplt 13
        end local 9 // int i
        17: .line 466
            iload 7 /* dbStart */
            iload 4 /* hLen */
            iadd
            istore 9 /* padStart */
        start local 9 // int padStart
        18: .line 467
            iconst_m1
            istore 10 /* onePos */
        start local 10 // int onePos
        19: .line 469
            iload 9 /* padStart */
            istore 11 /* i */
        start local 11 // int i
        20: goto 29
        21: .line 470
      StackMap locals: int int
      StackMap stack:
            aload 2 /* EM */
            iload 11 /* i */
            baload
            istore 12 /* value */
        start local 12 // int value
        22: .line 471
            iload 10 /* onePos */
            iconst_m1
            if_icmpne 28
        23: .line 472
            iload 12 /* value */
            ifeq 28
        24: .line 474
            iload 12 /* value */
            iconst_1
            if_icmpne 27
        25: .line 475
            iload 11 /* i */
            istore 10 /* onePos */
        26: .line 476
            goto 28
        27: .line 477
      StackMap locals: int
      StackMap stack:
            iconst_1
            istore 3 /* bp */
        end local 12 // int value
        28: .line 469
      StackMap locals:
      StackMap stack:
            iinc 11 /* i */ 1
      StackMap locals:
      StackMap stack:
        29: iload 11 /* i */
            aload 2 /* EM */
            arraylength
            if_icmplt 21
        end local 11 // int i
        30: .line 483
            iload 10 /* onePos */
            iconst_m1
            if_icmpne 33
        31: .line 484
            iconst_1
            istore 3 /* bp */
        32: .line 485
            aload 2 /* EM */
            arraylength
            iconst_1
            isub
            istore 10 /* onePos */
        33: .line 488
      StackMap locals:
      StackMap stack:
            iload 10 /* onePos */
            iconst_1
            iadd
            istore 11 /* mStart */
        start local 11 // int mStart
        34: .line 491
            iload 11 /* mStart */
            iload 9 /* padStart */
            isub
            newarray 8
            astore 12 /* tmp */
        start local 12 // byte[] tmp
        35: .line 492
            aload 2 /* EM */
            iload 9 /* padStart */
            aload 12 /* tmp */
            iconst_0
            aload 12 /* tmp */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        36: .line 494
            aload 2 /* EM */
            arraylength
            iload 11 /* mStart */
            isub
            newarray 8
            astore 13 /* m */
        start local 13 // byte[] m
        37: .line 495
            aload 2 /* EM */
            iload 11 /* mStart */
            aload 13 /* m */
            iconst_0
            aload 13 /* m */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        38: .line 497
            new javax.crypto.BadPaddingException
            dup
            ldc "Decryption error"
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            astore 14 /* bpe */
        start local 14 // javax.crypto.BadPaddingException bpe
        39: .line 499
            iload 3 /* bp */
            ifeq 41
        40: .line 500
            aload 14 /* bpe */
            athrow
        41: .line 502
      StackMap locals: sun.security.rsa.RSAPadding byte[] byte[] int int int int int int int int int byte[] byte[] javax.crypto.BadPaddingException
      StackMap stack:
            aload 13 /* m */
            areturn
        end local 14 // javax.crypto.BadPaddingException bpe
        end local 13 // byte[] m
        end local 12 // byte[] tmp
        end local 11 // int mStart
        end local 10 // int onePos
        end local 9 // int padStart
        end local 8 // int dbLen
        end local 7 // int dbStart
        end local 6 // int seedLen
        end local 5 // int seedStart
        end local 4 // int hLen
        end local 3 // boolean bp
        end local 2 // byte[] EM
        end local 1 // byte[] padded
        end local 0 // sun.security.rsa.RSAPadding this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   42     0       this  Lsun/security/rsa/RSAPadding;
            0   42     1     padded  [B
            1   42     2         EM  [B
            2   42     3         bp  Z
            3   42     4       hLen  I
            6   42     5  seedStart  I
            7   42     6    seedLen  I
            8   42     7    dbStart  I
            9   42     8      dbLen  I
           12   17     9          i  I
           18   42     9   padStart  I
           19   42    10     onePos  I
           20   30    11          i  I
           22   28    12      value  I
           34   42    11     mStart  I
           35   42    12        tmp  [B
           37   42    13          m  [B
           39   42    14        bpe  Ljavax/crypto/BadPaddingException;
    Exceptions:
      throws javax.crypto.BadPaddingException
    MethodParameters:
        Name  Flags
      padded  
}
SourceFile: "RSAPadding.java"
InnerClasses:
  public final PSpecified = javax.crypto.spec.PSource$PSpecified of javax.crypto.spec.PSource