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[]);
    descriptor: ([B)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // sun.security.rsa.RSAPadding this
        start local 1 // byte[] data
         0: .line 242
            aload 0 /* this */
            aload 1 /* data */
            iconst_0
            aload 1 /* data */
            arraylength
            invokevirtual sun.security.rsa.RSAPadding.pad:([BII)[B
            areturn
        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
    Exceptions:
      throws javax.crypto.BadPaddingException
    MethodParameters:
      Name  Flags
      data  

  public byte[] pad(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, 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 250
            iload 3 /* len */
            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
            iload 3 /* len */
            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 */
            iload 2 /* ofs */
            iload 3 /* len */
            invokestatic sun.security.rsa.RSACore.convert:([BII)[B
            areturn
         7: .line 260
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* data */
            iload 2 /* ofs */
            iload 3 /* len */
            invokevirtual sun.security.rsa.RSAPadding.padV15:([BII)[B
            areturn
         8: .line 262
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* data */
            iload 2 /* ofs */
            iload 3 /* len */
            invokevirtual sun.security.rsa.RSAPadding.padOAEP:([BII)[B
            areturn
         9: .line 264
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        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   10     0  this  Lsun/security/rsa/RSAPadding;
            0   10     1  data  [B
            0   10     2   ofs  I
            0   10     3   len  I
    Exceptions:
      throws javax.crypto.BadPaddingException
    MethodParameters:
      Name  Flags
      data  
      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 272
            aload 1 /* padded */
            arraylength
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.paddedSize:I
            if_icmpeq 5
         1: .line 273
            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 274
            aload 1 /* padded */
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         3: .line 275
            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 273
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 277
      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 279
      StackMap locals:
      StackMap stack:
            aload 1 /* padded */
            areturn
         7: .line 282
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* padded */
            invokevirtual sun.security.rsa.RSAPadding.unpadV15:([B)[B
            areturn
         8: .line 284
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* padded */
            invokevirtual sun.security.rsa.RSAPadding.unpadOAEP:([B)[B
            areturn
         9: .line 286
      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[], int, int);
    descriptor: ([BII)[B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=9, 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 294
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.paddedSize:I
            newarray 8
            astore 4 /* padded */
        start local 4 // byte[] padded
         1: .line 295
            aload 1 /* data */
            iload 2 /* ofs */
            aload 4 /* padded */
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.paddedSize:I
            iload 3 /* len */
            isub
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 296
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.paddedSize:I
            iconst_3
            isub
            iload 3 /* len */
            isub
            istore 5 /* psSize */
        start local 5 // int psSize
         3: .line 297
            iconst_0
            istore 6 /* k */
        start local 6 // int k
         4: .line 298
            aload 4 /* padded */
            iload 6 /* k */
            iinc 6 /* k */ 1
            iconst_0
            bastore
         5: .line 299
            aload 4 /* padded */
            iload 6 /* k */
            iinc 6 /* k */ 1
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.type:I
            i2b
            bastore
         6: .line 300
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.type:I
            iconst_1
            if_icmpne 11
         7: .line 302
            goto 9
         8: .line 303
      StackMap locals: byte[] int int
      StackMap stack:
            aload 4 /* padded */
            iload 6 /* k */
            iinc 6 /* k */ 1
            iconst_m1
            bastore
         9: .line 302
      StackMap locals:
      StackMap stack:
            iload 5 /* psSize */
            iinc 5 /* psSize */ -1
            ifgt 8
        10: .line 305
            goto 24
        11: .line 307
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
            ifnonnull 23
        12: .line 308
            aload 0 /* this */
            invokestatic sun.security.jca.JCAUtil.getSecureRandom:()Ljava/security/SecureRandom;
            putfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
        13: .line 312
            goto 23
        14: .line 315
      StackMap locals:
      StackMap stack:
            iload 5 /* psSize */
            iconst_4
            iadd
            newarray 8
            astore 7 /* r */
        start local 7 // byte[] r
        15: .line 316
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
            aload 7 /* r */
            invokevirtual java.security.SecureRandom.nextBytes:([B)V
        16: .line 317
            iconst_0
            istore 8 /* i */
        start local 8 // int i
        17: goto 22
        18: .line 318
      StackMap locals: byte[] int
      StackMap stack:
            aload 7 /* r */
            iload 8 /* i */
            baload
            ifeq 21
        19: .line 319
            aload 4 /* padded */
            iload 6 /* k */
            iinc 6 /* k */ 1
            aload 7 /* r */
            iload 8 /* i */
            baload
            bastore
        20: .line 320
            iinc 5 /* psSize */ -1
        21: .line 317
      StackMap locals:
      StackMap stack:
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        22: iload 8 /* i */
            aload 7 /* r */
            arraylength
            if_icmpge 23
            iload 5 /* psSize */
            ifgt 18
        end local 8 // int i
        end local 7 // byte[] r
        23: .line 312
      StackMap locals:
      StackMap stack:
            iload 5 /* psSize */
            ifgt 14
        24: .line 325
      StackMap locals:
      StackMap stack:
            aload 4 /* padded */
            areturn
        end local 6 // int k
        end local 5 // int psSize
        end local 4 // byte[] padded
        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   25     0    this  Lsun/security/rsa/RSAPadding;
            0   25     1    data  [B
            0   25     2     ofs  I
            0   25     3     len  I
            1   25     4  padded  [B
            3   25     5  psSize  I
            4   25     6       k  I
           15   23     7       r  [B
           17   23     8       i  I
    Exceptions:
      throws javax.crypto.BadPaddingException
    MethodParameters:
      Name  Flags
      data  
      ofs   
      len   

  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 334
            iconst_0
            istore 2 /* k */
        start local 2 // int k
         1: .line 335
            iconst_0
            istore 3 /* bp */
        start local 3 // boolean bp
         2: .line 337
            aload 1 /* padded */
            iload 2 /* k */
            iinc 2 /* k */ 1
            baload
            ifeq 4
         3: .line 338
            iconst_1
            istore 3 /* bp */
         4: .line 340
      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 341
            iconst_1
            istore 3 /* bp */
         6: .line 343
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* p */
        start local 4 // int p
         7: .line 344
            goto 16
         8: .line 345
      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 346
            iload 5 /* b */
            ifne 11
            iload 4 /* p */
            ifne 11
        10: .line 347
            iload 2 /* k */
            istore 4 /* p */
        11: .line 349
      StackMap locals: int
      StackMap stack:
            iload 2 /* k */
            aload 1 /* padded */
            arraylength
            if_icmpne 13
            iload 4 /* p */
            ifne 13
        12: .line 350
            iconst_1
            istore 3 /* bp */
        13: .line 352
      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 353
            iload 4 /* p */
            ifne 16
        15: .line 354
            iconst_1
            istore 3 /* bp */
        end local 5 // int b
        16: .line 344
      StackMap locals:
      StackMap stack:
            iload 2 /* k */
            aload 1 /* padded */
            arraylength
            if_icmplt 8
        17: .line 357
            aload 1 /* padded */
            arraylength
            iload 4 /* p */
            isub
            istore 5 /* n */
        start local 5 // int n
        18: .line 358
            iload 5 /* n */
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.maxDataSize:I
            if_icmple 20
        19: .line 359
            iconst_1
            istore 3 /* bp */
        20: .line 363
      StackMap locals: int
      StackMap stack:
            iload 4 /* p */
            newarray 8
            astore 6 /* padding */
        start local 6 // byte[] padding
        21: .line 364
            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 366
            iload 5 /* n */
            newarray 8
            astore 7 /* data */
        start local 7 // byte[] data
        23: .line 367
            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 369
            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 371
            iload 3 /* bp */
            ifeq 27
        26: .line 372
            aload 8 /* bpe */
            athrow
        27: .line 374
      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[], int, int);
    descriptor: ([BII)[B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=12, args_size=4
        start local 0 // sun.security.rsa.RSAPadding this
        start local 1 // byte[] M
        start local 2 // int ofs
        start local 3 // int len
         0: .line 383
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
            ifnonnull 2
         1: .line 384
            aload 0 /* this */
            invokestatic sun.security.jca.JCAUtil.getSecureRandom:()Ljava/security/SecureRandom;
            putfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
         2: .line 386
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.lHash:[B
            arraylength
            istore 4 /* hLen */
        start local 4 // int hLen
         3: .line 390
            iload 4 /* hLen */
            newarray 8
            astore 5 /* seed */
        start local 5 // byte[] seed
         4: .line 391
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
            aload 5 /* seed */
            invokevirtual java.security.SecureRandom.nextBytes:([B)V
         5: .line 394
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.paddedSize:I
            newarray 8
            astore 6 /* EM */
        start local 6 // byte[] EM
         6: .line 397
            iconst_1
            istore 7 /* seedStart */
        start local 7 // int seedStart
         7: .line 398
            iload 4 /* hLen */
            istore 8 /* seedLen */
        start local 8 // int seedLen
         8: .line 401
            aload 5 /* seed */
            iconst_0
            aload 6 /* EM */
            iload 7 /* seedStart */
            iload 8 /* seedLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 405
            iload 4 /* hLen */
            iconst_1
            iadd
            istore 9 /* dbStart */
        start local 9 // int dbStart
        10: .line 406
            aload 6 /* EM */
            arraylength
            iload 9 /* dbStart */
            isub
            istore 10 /* dbLen */
        start local 10 // int dbLen
        11: .line 409
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.paddedSize:I
            iload 3 /* len */
            isub
            istore 11 /* mStart */
        start local 11 // int mStart
        12: .line 416
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.lHash:[B
            iconst_0
            aload 6 /* EM */
            iload 9 /* dbStart */
            iload 4 /* hLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        13: .line 417
            aload 6 /* EM */
            iload 11 /* mStart */
            iconst_1
            isub
            iconst_1
            bastore
        14: .line 418
            aload 1 /* M */
            iload 2 /* ofs */
            aload 6 /* EM */
            iload 11 /* mStart */
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        15: .line 421
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.mgf:Lsun/security/rsa/MGF1;
            aload 6 /* EM */
            iload 7 /* seedStart */
            iload 8 /* seedLen */
            iload 10 /* dbLen */
            aload 6 /* EM */
            iload 9 /* dbStart */
            invokevirtual sun.security.rsa.MGF1.generateAndXor:([BIII[BI)V
        16: .line 424
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.mgf:Lsun/security/rsa/MGF1;
            aload 6 /* EM */
            iload 9 /* dbStart */
            iload 10 /* dbLen */
            iload 8 /* seedLen */
            aload 6 /* EM */
            iload 7 /* seedStart */
            invokevirtual sun.security.rsa.MGF1.generateAndXor:([BIII[BI)V
        17: .line 426
            aload 6 /* EM */
            areturn
        end local 11 // int mStart
        end local 10 // int dbLen
        end local 9 // int dbStart
        end local 8 // int seedLen
        end local 7 // int seedStart
        end local 6 // byte[] EM
        end local 5 // byte[] seed
        end local 4 // int hLen
        end local 3 // int len
        end local 2 // int ofs
        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
            0   18     2        ofs  I
            0   18     3        len  I
            3   18     4       hLen  I
            4   18     5       seed  [B
            6   18     6         EM  [B
            7   18     7  seedStart  I
            8   18     8    seedLen  I
           10   18     9    dbStart  I
           11   18    10      dbLen  I
           12   18    11     mStart  I
    Exceptions:
      throws javax.crypto.BadPaddingException
    MethodParameters:
      Name  Flags
      M     
      ofs   
      len   

  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 433
            aload 1 /* padded */
            astore 2 /* EM */
        start local 2 // byte[] EM
         1: .line 434
            iconst_0
            istore 3 /* bp */
        start local 3 // boolean bp
         2: .line 435
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.lHash:[B
            arraylength
            istore 4 /* hLen */
        start local 4 // int hLen
         3: .line 437
            aload 2 /* EM */
            iconst_0
            baload
            ifeq 5
         4: .line 438
            iconst_1
            istore 3 /* bp */
         5: .line 441
      StackMap locals: byte[] int int
      StackMap stack:
            iconst_1
            istore 5 /* seedStart */
        start local 5 // int seedStart
         6: .line 442
            iload 4 /* hLen */
            istore 6 /* seedLen */
        start local 6 // int seedLen
         7: .line 444
            iload 4 /* hLen */
            iconst_1
            iadd
            istore 7 /* dbStart */
        start local 7 // int dbStart
         8: .line 445
            aload 2 /* EM */
            arraylength
            iload 7 /* dbStart */
            isub
            istore 8 /* dbLen */
        start local 8 // int dbLen
         9: .line 447
            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 448
            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 451
            iconst_0
            istore 9 /* i */
        start local 9 // int i
        12: goto 16
        13: .line 452
      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 453
            iconst_1
            istore 3 /* bp */
        15: .line 451
      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 457
            iload 7 /* dbStart */
            iload 4 /* hLen */
            iadd
            istore 9 /* padStart */
        start local 9 // int padStart
        18: .line 458
            iconst_m1
            istore 10 /* onePos */
        start local 10 // int onePos
        19: .line 460
            iload 9 /* padStart */
            istore 11 /* i */
        start local 11 // int i
        20: goto 29
        21: .line 461
      StackMap locals: int int
      StackMap stack:
            aload 2 /* EM */
            iload 11 /* i */
            baload
            istore 12 /* value */
        start local 12 // int value
        22: .line 462
            iload 10 /* onePos */
            iconst_m1
            if_icmpne 28
        23: .line 463
            iload 12 /* value */
            ifeq 28
        24: .line 465
            iload 12 /* value */
            iconst_1
            if_icmpne 27
        25: .line 466
            iload 11 /* i */
            istore 10 /* onePos */
        26: .line 467
            goto 28
        27: .line 468
      StackMap locals: int
      StackMap stack:
            iconst_1
            istore 3 /* bp */
        end local 12 // int value
        28: .line 460
      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 474
            iload 10 /* onePos */
            iconst_m1
            if_icmpne 33
        31: .line 475
            iconst_1
            istore 3 /* bp */
        32: .line 476
            aload 2 /* EM */
            arraylength
            iconst_1
            isub
            istore 10 /* onePos */
        33: .line 479
      StackMap locals:
      StackMap stack:
            iload 10 /* onePos */
            iconst_1
            iadd
            istore 11 /* mStart */
        start local 11 // int mStart
        34: .line 482
            iload 11 /* mStart */
            iload 9 /* padStart */
            isub
            newarray 8
            astore 12 /* tmp */
        start local 12 // byte[] tmp
        35: .line 483
            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 485
            aload 2 /* EM */
            arraylength
            iload 11 /* mStart */
            isub
            newarray 8
            astore 13 /* m */
        start local 13 // byte[] m
        37: .line 486
            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 488
            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 490
            iload 3 /* bp */
            ifeq 41
        40: .line 491
            aload 14 /* bpe */
            athrow
        41: .line 493
      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