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 java.security.MessageDigest mgfMd;
    descriptor: Ljava/security/MessageDigest;
    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 209
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            invokestatic java.util.Collections.synchronizedMap:(Ljava/util/Map;)Ljava/util/Map;
         1: .line 208
            putstatic sun.security.rsa.RSAPadding.emptyHashes:Ljava/util/Map;
         2: .line 209
            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 123
            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 133
            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 143
            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 147
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 150
            aload 0 /* this */
            iload 1 /* type */
            putfield sun.security.rsa.RSAPadding.type:I
         2: .line 151
            aload 0 /* this */
            iload 2 /* paddedSize */
            putfield sun.security.rsa.RSAPadding.paddedSize:I
         3: .line 152
            aload 0 /* this */
            aload 3 /* random */
            putfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
         4: .line 153
            iload 2 /* paddedSize */
            bipush 64
            if_icmpge 6
         5: .line 155
            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 157
      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: 47
          }
         7: .line 160
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* paddedSize */
            bipush 11
            isub
            putfield sun.security.rsa.RSAPadding.maxDataSize:I
         8: .line 161
            goto 48
         9: .line 163
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* paddedSize */
            putfield sun.security.rsa.RSAPadding.maxDataSize:I
        10: .line 164
            goto 48
        11: .line 166
      StackMap locals:
      StackMap stack:
            ldc "SHA-1"
            astore 5 /* mdName */
        start local 5 // java.lang.String mdName
        12: .line 167
            ldc "SHA-1"
            astore 6 /* mgfMdName */
        start local 6 // java.lang.String mgfMdName
        13: .line 168
            aconst_null
            astore 7 /* digestInput */
        start local 7 // byte[] digestInput
        14: .line 170
            aload 4 /* spec */
            ifnull 31
        15: .line 171
            aload 4 /* spec */
            invokevirtual javax.crypto.spec.OAEPParameterSpec.getDigestAlgorithm:()Ljava/lang/String;
            astore 5 /* mdName */
        16: .line 172
            aload 4 /* spec */
            invokevirtual javax.crypto.spec.OAEPParameterSpec.getMGFAlgorithm:()Ljava/lang/String;
            astore 8 /* mgfName */
        start local 8 // java.lang.String mgfName
        17: .line 173
            aload 8 /* mgfName */
            ldc "MGF1"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 21
        18: .line 174
            new java.security.InvalidAlgorithmParameterException
            dup
        19: .line 175
            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 174
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        21: .line 177
      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 178
            invokevirtual java.security.spec.MGF1ParameterSpec.getDigestAlgorithm:()Ljava/lang/String;
        23: .line 177
            astore 6 /* mgfMdName */
        24: .line 179
            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 180
            aload 9 /* pSrc */
            invokevirtual javax.crypto.spec.PSource.getAlgorithm:()Ljava/lang/String;
            astore 10 /* pSrcAlgo */
        start local 10 // java.lang.String pSrcAlgo
        26: .line 181
            aload 10 /* pSrcAlgo */
            ldc "PSpecified"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifne 30
        27: .line 182
            new java.security.InvalidAlgorithmParameterException
            dup
        28: .line 183
            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 182
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        30: .line 185
      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 187
      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 188
            aload 0 /* this */
            aload 6 /* mgfMdName */
            invokestatic java.security.MessageDigest.getInstance:(Ljava/lang/String;)Ljava/security/MessageDigest;
            putfield sun.security.rsa.RSAPadding.mgfMd:Ljava/security/MessageDigest;
        33: .line 189
            goto 38
      StackMap locals:
      StackMap stack: java.security.NoSuchAlgorithmException
        34: astore 8 /* e */
        start local 8 // java.security.NoSuchAlgorithmException e
        35: .line 190
            new java.security.InvalidKeyException
            dup
        36: .line 191
            new java.lang.StringBuilder
            dup
            ldc "Digest "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 5 /* mdName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " not available"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 8 /* e */
        37: .line 190
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 8 // java.security.NoSuchAlgorithmException e
        38: .line 193
      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
        39: .line 194
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.lHash:[B
            arraylength
            istore 8 /* digestLen */
        start local 8 // int digestLen
        40: .line 195
            aload 0 /* this */
            iload 2 /* paddedSize */
            iconst_2
            isub
            iconst_2
            iload 8 /* digestLen */
            imul
            isub
            putfield sun.security.rsa.RSAPadding.maxDataSize:I
        41: .line 196
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.maxDataSize:I
            ifgt 48
        42: .line 197
            new java.security.InvalidKeyException
            dup
        43: .line 198
            new java.lang.StringBuilder
            dup
            ldc "Key is too short for encryption using OAEPPadding with "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        44: .line 199
            aload 5 /* mdName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " and MGF1"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 6 /* mgfMdName */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        45: .line 198
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        46: .line 197
            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
        47: .line 203
      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
        48: .line 205
      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   49     0         this  Lsun/security/rsa/RSAPadding;
            0   49     1         type  I
            0   49     2   paddedSize  I
            0   49     3       random  Ljava/security/SecureRandom;
            0   49     4         spec  Ljavax/crypto/spec/OAEPParameterSpec;
           12   47     5       mdName  Ljava/lang/String;
           13   47     6    mgfMdName  Ljava/lang/String;
           14   47     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   38     8            e  Ljava/security/NoSuchAlgorithmException;
           40   47     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 221
            aload 1 /* digestInput */
            ifnull 1
            aload 1 /* digestInput */
            arraylength
            ifne 7
         1: .line 222
      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 223
            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 224
            aload 2 /* result */
            ifnonnull 8
         4: .line 225
            aload 0 /* md */
            invokevirtual java.security.MessageDigest.digest:()[B
            astore 2 /* result */
         5: .line 226
            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 228
            goto 8
        end local 2 // byte[] result
         7: .line 229
      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 231
      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 239
            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 247
            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 254
            aload 1 /* data */
            arraylength
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.maxDataSize:I
            if_icmple 5
         1: .line 255
            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 256
            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 257
            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 255
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 259
      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 261
      StackMap locals:
      StackMap stack:
            aload 1 /* data */
            areturn
         7: .line 264
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* data */
            invokevirtual sun.security.rsa.RSAPadding.padV15:([B)[B
            areturn
         8: .line 266
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* data */
            invokevirtual sun.security.rsa.RSAPadding.padOAEP:([B)[B
            areturn
         9: .line 268
      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 277
            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 284
            aload 1 /* padded */
            arraylength
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.paddedSize:I
            if_icmpeq 5
         1: .line 285
            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 286
            aload 1 /* padded */
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         3: .line 287
            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 285
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 289
      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 291
      StackMap locals:
      StackMap stack:
            aload 1 /* padded */
            areturn
         7: .line 294
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* padded */
            invokevirtual sun.security.rsa.RSAPadding.unpadV15:([B)[B
            areturn
         8: .line 296
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* padded */
            invokevirtual sun.security.rsa.RSAPadding.unpadOAEP:([B)[B
            areturn
         9: .line 298
      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=8, args_size=2
        start local 0 // sun.security.rsa.RSAPadding this
        start local 1 // byte[] data
         0: .line 306
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.paddedSize:I
            newarray 8
            astore 2 /* padded */
        start local 2 // byte[] padded
         1: .line 307
            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 308
            aload 1 /* data */
            arraylength
         3: .line 307
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 309
            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 310
            iconst_0
            istore 4 /* k */
        start local 4 // int k
         6: .line 311
            aload 2 /* padded */
            iload 4 /* k */
            iinc 4 /* k */ 1
            iconst_0
            bastore
         7: .line 312
            aload 2 /* padded */
            iload 4 /* k */
            iinc 4 /* k */ 1
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.type:I
            i2b
            bastore
         8: .line 313
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.type:I
            iconst_1
            if_icmpne 13
         9: .line 315
            goto 11
        10: .line 316
      StackMap locals: byte[] int int
      StackMap stack:
            aload 2 /* padded */
            iload 4 /* k */
            iinc 4 /* k */ 1
            iconst_m1
            bastore
        11: .line 315
      StackMap locals:
      StackMap stack:
            iload 3 /* psSize */
            iinc 3 /* psSize */ -1
            ifgt 10
        12: .line 318
            goto 25
        13: .line 320
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
            ifnonnull 15
        14: .line 321
            aload 0 /* this */
            invokestatic sun.security.jca.JCAUtil.getSecureRandom:()Ljava/security/SecureRandom;
            putfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
        15: .line 325
      StackMap locals:
      StackMap stack:
            bipush 64
            newarray 8
            astore 5 /* r */
        start local 5 // byte[] r
        16: .line 326
            iconst_m1
            istore 6 /* i */
        start local 6 // int i
        17: .line 327
            goto 24
        18: .line 330
      StackMap locals: byte[] int
      StackMap stack:
            iload 6 /* i */
            ifge 21
        19: .line 331
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
            aload 5 /* r */
            invokevirtual java.security.SecureRandom.nextBytes:([B)V
        20: .line 332
            aload 5 /* r */
            arraylength
            iconst_1
            isub
            istore 6 /* i */
        21: .line 334
      StackMap locals:
      StackMap stack:
            aload 5 /* r */
            iload 6 /* i */
            iinc 6 /* i */ -1
            baload
            sipush 255
            iand
            istore 7 /* b */
        start local 7 // int b
        22: .line 335
            iload 7 /* b */
            ifeq 18
        23: .line 336
            aload 2 /* padded */
            iload 4 /* k */
            iinc 4 /* k */ 1
            iload 7 /* b */
            i2b
            bastore
        end local 7 // int b
        24: .line 327
      StackMap locals:
      StackMap stack:
            iload 3 /* psSize */
            iinc 3 /* psSize */ -1
            ifgt 18
        end local 6 // int i
        end local 5 // byte[] r
        25: .line 339
      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   26     0    this  Lsun/security/rsa/RSAPadding;
            0   26     1    data  [B
            1   26     2  padded  [B
            5   26     3  psSize  I
            6   26     4       k  I
           16   25     5       r  [B
           17   25     6       i  I
           22   24     7       b  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 348
            iconst_0
            istore 2 /* k */
        start local 2 // int k
         1: .line 349
            iconst_0
            istore 3 /* bp */
        start local 3 // boolean bp
         2: .line 351
            aload 1 /* padded */
            iload 2 /* k */
            iinc 2 /* k */ 1
            baload
            ifeq 4
         3: .line 352
            iconst_1
            istore 3 /* bp */
         4: .line 354
      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 355
            iconst_1
            istore 3 /* bp */
         6: .line 357
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* p */
        start local 4 // int p
         7: .line 358
            goto 16
         8: .line 359
      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 360
            iload 5 /* b */
            ifne 11
            iload 4 /* p */
            ifne 11
        10: .line 361
            iload 2 /* k */
            istore 4 /* p */
        11: .line 363
      StackMap locals: int
      StackMap stack:
            iload 2 /* k */
            aload 1 /* padded */
            arraylength
            if_icmpne 13
            iload 4 /* p */
            ifne 13
        12: .line 364
            iconst_1
            istore 3 /* bp */
        13: .line 366
      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 367
            iload 4 /* p */
            ifne 16
        15: .line 368
            iconst_1
            istore 3 /* bp */
        end local 5 // int b
        16: .line 358
      StackMap locals:
      StackMap stack:
            iload 2 /* k */
            aload 1 /* padded */
            arraylength
            if_icmplt 8
        17: .line 371
            aload 1 /* padded */
            arraylength
            iload 4 /* p */
            isub
            istore 5 /* n */
        start local 5 // int n
        18: .line 372
            iload 5 /* n */
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.maxDataSize:I
            if_icmple 20
        19: .line 373
            iconst_1
            istore 3 /* bp */
        20: .line 377
      StackMap locals: int
      StackMap stack:
            iload 4 /* p */
            newarray 8
            astore 6 /* padding */
        start local 6 // byte[] padding
        21: .line 378
            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 380
            iload 5 /* n */
            newarray 8
            astore 7 /* data */
        start local 7 // byte[] data
        23: .line 381
            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 383
            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 385
            iload 3 /* bp */
            ifeq 27
        26: .line 386
            aload 8 /* bpe */
            athrow
        27: .line 388
      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 397
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
            ifnonnull 2
         1: .line 398
            aload 0 /* this */
            invokestatic sun.security.jca.JCAUtil.getSecureRandom:()Ljava/security/SecureRandom;
            putfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
         2: .line 400
      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 404
            iload 2 /* hLen */
            newarray 8
            astore 3 /* seed */
        start local 3 // byte[] seed
         4: .line 405
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.random:Ljava/security/SecureRandom;
            aload 3 /* seed */
            invokevirtual java.security.SecureRandom.nextBytes:([B)V
         5: .line 408
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.paddedSize:I
            newarray 8
            astore 4 /* EM */
        start local 4 // byte[] EM
         6: .line 411
            iconst_1
            istore 5 /* seedStart */
        start local 5 // int seedStart
         7: .line 412
            iload 2 /* hLen */
            istore 6 /* seedLen */
        start local 6 // int seedLen
         8: .line 415
            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 419
            iload 2 /* hLen */
            iconst_1
            iadd
            istore 7 /* dbStart */
        start local 7 // int dbStart
        10: .line 420
            aload 4 /* EM */
            arraylength
            iload 7 /* dbStart */
            isub
            istore 8 /* dbLen */
        start local 8 // int dbLen
        11: .line 423
            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 430
            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 431
            aload 4 /* EM */
            iload 9 /* mStart */
            iconst_1
            isub
            iconst_1
            bastore
        14: .line 432
            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 435
            aload 0 /* this */
            aload 4 /* EM */
            iload 5 /* seedStart */
            iload 6 /* seedLen */
            aload 4 /* EM */
            iload 7 /* dbStart */
            iload 8 /* dbLen */
            invokevirtual sun.security.rsa.RSAPadding.mgf1:([BII[BII)V
        16: .line 438
            aload 0 /* this */
            aload 4 /* EM */
            iload 7 /* dbStart */
            iload 8 /* dbLen */
            aload 4 /* EM */
            iload 5 /* seedStart */
            iload 6 /* seedLen */
            invokevirtual sun.security.rsa.RSAPadding.mgf1:([BII[BII)V
        17: .line 440
            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 447
            aload 1 /* padded */
            astore 2 /* EM */
        start local 2 // byte[] EM
         1: .line 448
            iconst_0
            istore 3 /* bp */
        start local 3 // boolean bp
         2: .line 449
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.lHash:[B
            arraylength
            istore 4 /* hLen */
        start local 4 // int hLen
         3: .line 451
            aload 2 /* EM */
            iconst_0
            baload
            ifeq 5
         4: .line 452
            iconst_1
            istore 3 /* bp */
         5: .line 455
      StackMap locals: byte[] int int
      StackMap stack:
            iconst_1
            istore 5 /* seedStart */
        start local 5 // int seedStart
         6: .line 456
            iload 4 /* hLen */
            istore 6 /* seedLen */
        start local 6 // int seedLen
         7: .line 458
            iload 4 /* hLen */
            iconst_1
            iadd
            istore 7 /* dbStart */
        start local 7 // int dbStart
         8: .line 459
            aload 2 /* EM */
            arraylength
            iload 7 /* dbStart */
            isub
            istore 8 /* dbLen */
        start local 8 // int dbLen
         9: .line 461
            aload 0 /* this */
            aload 2 /* EM */
            iload 7 /* dbStart */
            iload 8 /* dbLen */
            aload 2 /* EM */
            iload 5 /* seedStart */
            iload 6 /* seedLen */
            invokevirtual sun.security.rsa.RSAPadding.mgf1:([BII[BII)V
        10: .line 462
            aload 0 /* this */
            aload 2 /* EM */
            iload 5 /* seedStart */
            iload 6 /* seedLen */
            aload 2 /* EM */
            iload 7 /* dbStart */
            iload 8 /* dbLen */
            invokevirtual sun.security.rsa.RSAPadding.mgf1:([BII[BII)V
        11: .line 465
            iconst_0
            istore 9 /* i */
        start local 9 // int i
        12: goto 16
        13: .line 466
      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 467
            iconst_1
            istore 3 /* bp */
        15: .line 465
      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 471
            iload 7 /* dbStart */
            iload 4 /* hLen */
            iadd
            istore 9 /* padStart */
        start local 9 // int padStart
        18: .line 472
            iconst_m1
            istore 10 /* onePos */
        start local 10 // int onePos
        19: .line 474
            iload 9 /* padStart */
            istore 11 /* i */
        start local 11 // int i
        20: goto 29
        21: .line 475
      StackMap locals: int int
      StackMap stack:
            aload 2 /* EM */
            iload 11 /* i */
            baload
            istore 12 /* value */
        start local 12 // int value
        22: .line 476
            iload 10 /* onePos */
            iconst_m1
            if_icmpne 28
        23: .line 477
            iload 12 /* value */
            ifeq 28
        24: .line 479
            iload 12 /* value */
            iconst_1
            if_icmpne 27
        25: .line 480
            iload 11 /* i */
            istore 10 /* onePos */
        26: .line 481
            goto 28
        27: .line 482
      StackMap locals: int
      StackMap stack:
            iconst_1
            istore 3 /* bp */
        end local 12 // int value
        28: .line 474
      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 488
            iload 10 /* onePos */
            iconst_m1
            if_icmpne 33
        31: .line 489
            iconst_1
            istore 3 /* bp */
        32: .line 490
            aload 2 /* EM */
            arraylength
            iconst_1
            isub
            istore 10 /* onePos */
        33: .line 493
      StackMap locals:
      StackMap stack:
            iload 10 /* onePos */
            iconst_1
            iadd
            istore 11 /* mStart */
        start local 11 // int mStart
        34: .line 496
            iload 11 /* mStart */
            iload 9 /* padStart */
            isub
            newarray 8
            astore 12 /* tmp */
        start local 12 // byte[] tmp
        35: .line 497
            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 499
            aload 2 /* EM */
            arraylength
            iload 11 /* mStart */
            isub
            newarray 8
            astore 13 /* m */
        start local 13 // byte[] m
        37: .line 500
            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 502
            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 504
            iload 3 /* bp */
            ifeq 41
        40: .line 505
            aload 14 /* bpe */
            athrow
        41: .line 507
      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  

  private void mgf1(byte[], int, int, byte[], int, int);
    descriptor: ([BII[BII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=10, args_size=7
        start local 0 // sun.security.rsa.RSAPadding this
        start local 1 // byte[] seed
        start local 2 // int seedOfs
        start local 3 // int seedLen
        start local 4 // byte[] out
        start local 5 // int outOfs
        start local 6 // int maskLen
         0: .line 521
            iconst_4
            newarray 8
            astore 7 /* C */
        start local 7 // byte[] C
         1: .line 522
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.mgfMd:Ljava/security/MessageDigest;
            invokevirtual java.security.MessageDigest.getDigestLength:()I
            newarray 8
            astore 8 /* digest */
        start local 8 // byte[] digest
         2: .line 523
            goto 19
         3: .line 524
      StackMap locals: byte[] byte[]
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.mgfMd:Ljava/security/MessageDigest;
            aload 1 /* seed */
            iload 2 /* seedOfs */
            iload 3 /* seedLen */
            invokevirtual java.security.MessageDigest.update:([BII)V
         4: .line 525
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.mgfMd:Ljava/security/MessageDigest;
            aload 7 /* C */
            invokevirtual java.security.MessageDigest.update:([B)V
         5: .line 527
            aload 0 /* this */
            getfield sun.security.rsa.RSAPadding.mgfMd:Ljava/security/MessageDigest;
            aload 8 /* digest */
            iconst_0
            aload 8 /* digest */
            arraylength
            invokevirtual java.security.MessageDigest.digest:([BII)I
            pop
         6: .line 528
            goto 9
      StackMap locals:
      StackMap stack: java.security.DigestException
         7: astore 9 /* e */
        start local 9 // java.security.DigestException e
         8: .line 530
            new javax.crypto.BadPaddingException
            dup
            aload 9 /* e */
            invokevirtual java.security.DigestException.toString:()Ljava/lang/String;
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
        end local 9 // java.security.DigestException e
         9: .line 532
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 9 /* i */
        start local 9 // int i
        10: goto 13
        11: .line 533
      StackMap locals: int
      StackMap stack:
            aload 4 /* out */
            iload 5 /* outOfs */
            iinc 5 /* outOfs */ 1
            dup2
            baload
            aload 8 /* digest */
            iload 9 /* i */
            iinc 9 /* i */ 1
            baload
            ixor
            i2b
            bastore
        12: .line 532
            iinc 6 /* maskLen */ -1
      StackMap locals:
      StackMap stack:
        13: iload 9 /* i */
            aload 8 /* digest */
            arraylength
            if_icmpge 14
            iload 6 /* maskLen */
            ifgt 11
        end local 9 // int i
        14: .line 535
      StackMap locals:
      StackMap stack:
            iload 6 /* maskLen */
            ifle 19
        15: .line 537
            aload 7 /* C */
            arraylength
            iconst_1
            isub
            istore 9 /* i */
        start local 9 // int i
        16: goto 18
      StackMap locals: int
      StackMap stack:
        17: iinc 9 /* i */ -1
      StackMap locals:
      StackMap stack:
        18: aload 7 /* C */
            iload 9 /* i */
            dup2
            baload
            iconst_1
            iadd
            i2b
            dup_x2
            bastore
            ifne 19
            iload 9 /* i */
            ifgt 17
        end local 9 // int i
        19: .line 523
      StackMap locals:
      StackMap stack:
            iload 6 /* maskLen */
            ifgt 3
        20: .line 542
            return
        end local 8 // byte[] digest
        end local 7 // byte[] C
        end local 6 // int maskLen
        end local 5 // int outOfs
        end local 4 // byte[] out
        end local 3 // int seedLen
        end local 2 // int seedOfs
        end local 1 // byte[] seed
        end local 0 // sun.security.rsa.RSAPadding this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   21     0     this  Lsun/security/rsa/RSAPadding;
            0   21     1     seed  [B
            0   21     2  seedOfs  I
            0   21     3  seedLen  I
            0   21     4      out  [B
            0   21     5   outOfs  I
            0   21     6  maskLen  I
            1   21     7        C  [B
            2   21     8   digest  [B
            8    9     9        e  Ljava/security/DigestException;
           10   14     9        i  I
           16   19     9        i  I
      Exception table:
        from    to  target  type
           5     6       7  Class java.security.DigestException
    Exceptions:
      throws javax.crypto.BadPaddingException
    MethodParameters:
         Name  Flags
      seed     
      seedOfs  
      seedLen  
      out      
      outOfs   
      maskLen  
}
SourceFile: "RSAPadding.java"
InnerClasses:
  public final PSpecified = javax.crypto.spec.PSource$PSpecified of javax.crypto.spec.PSource