final class sun.security.pkcs11.P11RSACipher extends javax.crypto.CipherSpi
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: sun.security.pkcs11.P11RSACipher
  super_class: javax.crypto.CipherSpi
{
  private static final int PKCS1_MIN_PADDING_LENGTH;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 11

  private static final byte[] B0;
    descriptor: [B
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

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

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

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

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

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

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

  private final sun.security.pkcs11.Token token;
    descriptor: Lsun/security/pkcs11/Token;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String algorithm;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final long mechanism;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private sun.security.pkcs11.Session session;
    descriptor: Lsun/security/pkcs11/Session;
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

  private sun.security.pkcs11.P11Key p11Key;
    descriptor: Lsun/security/pkcs11/P11Key;
    flags: (0x0002) ACC_PRIVATE

  private boolean initialized;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 56
            iconst_0
            newarray 8
            putstatic sun.security.pkcs11.P11RSACipher.B0:[B
         1: .line 70
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(sun.security.pkcs11.Token, java.lang.String, long);
    descriptor: (Lsun/security/pkcs11/Token;Ljava/lang/String;J)V
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // sun.security.pkcs11.P11RSACipher this
        start local 1 // sun.security.pkcs11.Token token
        start local 2 // java.lang.String algorithm
        start local 3 // long mechanism
         0: .line 115
            aload 0 /* this */
            invokespecial javax.crypto.CipherSpi.<init>:()V
         1: .line 108
            aload 0 /* this */
            aconst_null
            putfield sun.security.pkcs11.P11RSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
         2: .line 116
            aload 0 /* this */
            aload 1 /* token */
            putfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
         3: .line 117
            aload 0 /* this */
            ldc "RSA"
            putfield sun.security.pkcs11.P11RSACipher.algorithm:Ljava/lang/String;
         4: .line 118
            aload 0 /* this */
            lload 3 /* mechanism */
            putfield sun.security.pkcs11.P11RSACipher.mechanism:J
         5: .line 119
            return
        end local 3 // long mechanism
        end local 2 // java.lang.String algorithm
        end local 1 // sun.security.pkcs11.Token token
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lsun/security/pkcs11/P11RSACipher;
            0    6     1      token  Lsun/security/pkcs11/Token;
            0    6     2  algorithm  Ljava/lang/String;
            0    6     3  mechanism  J
    Exceptions:
      throws sun.security.pkcs11.wrapper.PKCS11Exception
    MethodParameters:
           Name  Flags
      token      
      algorithm  
      mechanism  

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

  protected void engineSetPadding(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // sun.security.pkcs11.P11RSACipher this
        start local 1 // java.lang.String padding
         0: .line 131
            aload 1 /* padding */
            getstatic java.util.Locale.ENGLISH:Ljava/util/Locale;
            invokevirtual java.lang.String.toLowerCase:(Ljava/util/Locale;)Ljava/lang/String;
            astore 2 /* lowerPadding */
        start local 2 // java.lang.String lowerPadding
         1: .line 132
            aload 2 /* lowerPadding */
            ldc "pkcs1padding"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
         2: .line 133
            aload 0 /* this */
            iconst_2
            putfield sun.security.pkcs11.P11RSACipher.padType:I
         3: .line 134
            goto 8
      StackMap locals: java.lang.String
      StackMap stack:
         4: aload 2 /* lowerPadding */
            ldc "nopadding"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 7
         5: .line 135
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11RSACipher.padType:I
         6: .line 136
            goto 8
         7: .line 137
      StackMap locals:
      StackMap stack:
            new javax.crypto.NoSuchPaddingException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unsupported padding "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* padding */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial javax.crypto.NoSuchPaddingException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 139
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.String lowerPadding
        end local 1 // java.lang.String padding
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    9     0          this  Lsun/security/pkcs11/P11RSACipher;
            0    9     1       padding  Ljava/lang/String;
            1    9     2  lowerPadding  Ljava/lang/String;
    Exceptions:
      throws javax.crypto.NoSuchPaddingException
    MethodParameters:
         Name  Flags
      padding  

  protected int engineGetBlockSize();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.pkcs11.P11RSACipher this
         0: .line 144
            iconst_0
            ireturn
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/pkcs11/P11RSACipher;

  protected int engineGetOutputSize(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // sun.security.pkcs11.P11RSACipher this
        start local 1 // int inputLen
         0: .line 150
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.outputSize:I
            ireturn
        end local 1 // int inputLen
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lsun/security/pkcs11/P11RSACipher;
            0    1     1  inputLen  I
    MethodParameters:
          Name  Flags
      inputLen  

  protected byte[] engineGetIV();
    descriptor: ()[B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.pkcs11.P11RSACipher this
         0: .line 156
            aconst_null
            areturn
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/pkcs11/P11RSACipher;

  protected java.security.AlgorithmParameters engineGetParameters();
    descriptor: ()Ljava/security/AlgorithmParameters;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.pkcs11.P11RSACipher this
         0: .line 162
            aconst_null
            areturn
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/pkcs11/P11RSACipher;

  protected void engineInit(int, java.security.Key, java.security.SecureRandom);
    descriptor: (ILjava/security/Key;Ljava/security/SecureRandom;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // sun.security.pkcs11.P11RSACipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // java.security.SecureRandom random
         0: .line 168
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            invokevirtual sun.security.pkcs11.P11RSACipher.implInit:(ILjava/security/Key;)V
         1: .line 169
            return
        end local 3 // java.security.SecureRandom random
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lsun/security/pkcs11/P11RSACipher;
            0    2     1  opmode  I
            0    2     2     key  Ljava/security/Key;
            0    2     3  random  Ljava/security/SecureRandom;
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      random  

  protected void engineInit(int, java.security.Key, java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom);
    descriptor: (ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // sun.security.pkcs11.P11RSACipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // java.security.spec.AlgorithmParameterSpec params
        start local 4 // java.security.SecureRandom random
         0: .line 176
            aload 3 /* params */
            ifnull 7
         1: .line 177
            aload 3 /* params */
            instanceof sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec
            ifne 5
         2: .line 178
            new java.security.InvalidAlgorithmParameterException
            dup
         3: .line 179
            ldc "Parameters not supported"
         4: .line 178
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 181
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* params */
            putfield sun.security.pkcs11.P11RSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
         6: .line 182
            aload 0 /* this */
            aload 4 /* random */
            putfield sun.security.pkcs11.P11RSACipher.random:Ljava/security/SecureRandom;
         7: .line 184
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            invokevirtual sun.security.pkcs11.P11RSACipher.implInit:(ILjava/security/Key;)V
         8: .line 185
            return
        end local 4 // java.security.SecureRandom random
        end local 3 // java.security.spec.AlgorithmParameterSpec params
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lsun/security/pkcs11/P11RSACipher;
            0    9     1  opmode  I
            0    9     2     key  Ljava/security/Key;
            0    9     3  params  Ljava/security/spec/AlgorithmParameterSpec;
            0    9     4  random  Ljava/security/SecureRandom;
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      params  
      random  

  protected void engineInit(int, java.security.Key, java.security.AlgorithmParameters, java.security.SecureRandom);
    descriptor: (ILjava/security/Key;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // sun.security.pkcs11.P11RSACipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // java.security.AlgorithmParameters params
        start local 4 // java.security.SecureRandom random
         0: .line 191
            aload 3 /* params */
            ifnull 4
         1: .line 192
            new java.security.InvalidAlgorithmParameterException
            dup
         2: .line 193
            ldc "Parameters not supported"
         3: .line 192
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 195
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            invokevirtual sun.security.pkcs11.P11RSACipher.implInit:(ILjava/security/Key;)V
         5: .line 196
            return
        end local 4 // java.security.SecureRandom random
        end local 3 // java.security.AlgorithmParameters params
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lsun/security/pkcs11/P11RSACipher;
            0    6     1  opmode  I
            0    6     2     key  Ljava/security/Key;
            0    6     3  params  Ljava/security/AlgorithmParameters;
            0    6     4  random  Ljava/security/SecureRandom;
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      params  
      random  

  private void implInit(int, java.security.Key);
    descriptor: (ILjava/security/Key;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // sun.security.pkcs11.P11RSACipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
         0: .line 199
            aload 0 /* this */
            iconst_1
            invokevirtual sun.security.pkcs11.P11RSACipher.reset:(Z)V
         1: .line 200
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            aload 2 /* key */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.algorithm:Ljava/lang/String;
            invokestatic sun.security.pkcs11.P11KeyFactory.convertKey:(Lsun/security/pkcs11/Token;Ljava/security/Key;Ljava/lang/String;)Lsun/security/pkcs11/P11Key;
            putfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
         2: .line 202
            iload 1 /* opmode */
            iconst_1
            if_icmpne 5
         3: .line 203
            iconst_1
            istore 3 /* encrypt */
        start local 3 // boolean encrypt
         4: .line 204
            goto 21
        end local 3 // boolean encrypt
      StackMap locals:
      StackMap stack:
         5: iload 1 /* opmode */
            iconst_2
            if_icmpne 8
         6: .line 205
            iconst_0
            istore 3 /* encrypt */
        start local 3 // boolean encrypt
         7: .line 206
            goto 21
        end local 3 // boolean encrypt
      StackMap locals:
      StackMap stack:
         8: iload 1 /* opmode */
            iconst_3
            if_icmpne 14
         9: .line 207
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.isPublic:()Z
            ifne 13
        10: .line 208
            new java.security.InvalidKeyException
            dup
        11: .line 209
            ldc "Wrap has to be used with public keys"
        12: .line 208
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        13: .line 213
      StackMap locals:
      StackMap stack:
            return
        14: .line 214
      StackMap locals:
      StackMap stack:
            iload 1 /* opmode */
            iconst_4
            if_icmpne 20
        15: .line 215
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.isPrivate:()Z
            ifne 19
        16: .line 216
            new java.security.InvalidKeyException
            dup
        17: .line 217
            ldc "Unwrap has to be used with private keys"
        18: .line 216
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        19: .line 221
      StackMap locals:
      StackMap stack:
            return
        20: .line 223
      StackMap locals:
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unsupported mode: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* opmode */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        start local 3 // boolean encrypt
        21: .line 225
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.isPublic:()Z
            ifeq 26
        22: .line 226
            aload 0 /* this */
            iload 3 /* encrypt */
            ifeq 23
            iconst_1
            goto 24
      StackMap locals:
      StackMap stack: sun.security.pkcs11.P11RSACipher
        23: iconst_4
      StackMap locals: sun.security.pkcs11.P11RSACipher int java.security.Key int
      StackMap stack: sun.security.pkcs11.P11RSACipher int
        24: putfield sun.security.pkcs11.P11RSACipher.mode:I
        25: .line 227
            goto 32
      StackMap locals:
      StackMap stack:
        26: aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.isPrivate:()Z
            ifeq 31
        27: .line 228
            aload 0 /* this */
            iload 3 /* encrypt */
            ifeq 28
            iconst_3
            goto 29
      StackMap locals:
      StackMap stack: sun.security.pkcs11.P11RSACipher
        28: iconst_2
      StackMap locals: sun.security.pkcs11.P11RSACipher int java.security.Key int
      StackMap stack: sun.security.pkcs11.P11RSACipher int
        29: putfield sun.security.pkcs11.P11RSACipher.mode:I
        30: .line 229
            goto 32
        31: .line 230
      StackMap locals:
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unknown key type: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
        32: .line 232
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.length:()I
            bipush 7
            iadd
            iconst_3
            ishr
            istore 4 /* n */
        start local 4 // int n
        33: .line 233
            aload 0 /* this */
            iload 4 /* n */
            putfield sun.security.pkcs11.P11RSACipher.outputSize:I
        34: .line 234
            aload 0 /* this */
            iload 4 /* n */
            newarray 8
            putfield sun.security.pkcs11.P11RSACipher.buffer:[B
        35: .line 235
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.padType:I
            iconst_2
            if_icmpne 37
            iload 3 /* encrypt */
            ifeq 37
        36: .line 236
            iload 4 /* n */
            bipush 11
            isub
            goto 38
      StackMap locals: sun.security.pkcs11.P11RSACipher int java.security.Key int int
      StackMap stack: sun.security.pkcs11.P11RSACipher
        37: iload 4 /* n */
        38: .line 235
      StackMap locals: sun.security.pkcs11.P11RSACipher int java.security.Key int int
      StackMap stack: sun.security.pkcs11.P11RSACipher int
            putfield sun.security.pkcs11.P11RSACipher.maxInputSize:I
        39: .line 238
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11RSACipher.initialize:()V
        40: .line 239
            goto 43
      StackMap locals:
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
        41: astore 5 /* e */
        start local 5 // sun.security.pkcs11.wrapper.PKCS11Exception e
        42: .line 240
            new java.security.InvalidKeyException
            dup
            ldc "init() failed"
            aload 5 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 5 // sun.security.pkcs11.wrapper.PKCS11Exception e
        43: .line 242
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int n
        end local 3 // boolean encrypt
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   44     0     this  Lsun/security/pkcs11/P11RSACipher;
            0   44     1   opmode  I
            0   44     2      key  Ljava/security/Key;
            4    5     3  encrypt  Z
            7    8     3  encrypt  Z
           21   44     3  encrypt  Z
           33   44     4        n  I
           42   43     5        e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
          39    40      41  Class sun.security.pkcs11.wrapper.PKCS11Exception
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
        Name  Flags
      opmode  
      key     

  private void reset(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.security.pkcs11.P11RSACipher this
        start local 1 // boolean doCancel
         0: .line 246
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.initialized:Z
            ifne 2
         1: .line 247
            return
         2: .line 249
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11RSACipher.initialized:Z
         3: .line 251
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
            ifnonnull 7
         4: .line 258
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
         5: .line 259
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            putfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
         6: .line 252
            return
         7: .line 254
      StackMap locals:
      StackMap stack:
            iload 1 /* doCancel */
            ifeq 14
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.explicitCancel:Z
            ifeq 14
         8: .line 255
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11RSACipher.cancelOperation:()V
         9: .line 257
            goto 14
      StackMap locals:
      StackMap stack: java.lang.Throwable
        10: astore 2
        11: .line 258
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        12: .line 259
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            putfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
        13: .line 260
            aload 2
            athrow
        14: .line 258
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        15: .line 259
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            putfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
        16: .line 261
            return
        end local 1 // boolean doCancel
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   17     0      this  Lsun/security/pkcs11/P11RSACipher;
            0   17     1  doCancel  Z
      Exception table:
        from    to  target  type
           3     4      10  any
           7    10      10  any
    MethodParameters:
          Name  Flags
      doCancel  

  private void cancelOperation();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=13, locals=7, args_size=1
        start local 0 // sun.security.pkcs11.P11RSACipher this
         0: .line 266
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.ensureValid:()V
         1: .line 267
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.hasObjects:()Z
            ifne 4
         2: .line 268
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Token.killSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            putfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
         3: .line 269
            return
         4: .line 272
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            astore 1 /* p11 */
        start local 1 // sun.security.pkcs11.wrapper.PKCS11 p11
         5: .line 273
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.maxInputSize:I
            istore 2 /* inLen */
        start local 2 // int inLen
         6: .line 274
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.buffer:[B
            arraylength
            istore 3 /* outLen */
        start local 3 // int outLen
         7: .line 275
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lstore 4 /* sessId */
        start local 4 // long sessId
         8: .line 276
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.mode:I
            tableswitch { // 1 - 4
                    1: 9
                    2: 11
                    3: 13
                    4: 16
              default: 20
          }
         9: .line 278
      StackMap locals: sun.security.pkcs11.P11RSACipher sun.security.pkcs11.wrapper.PKCS11 int int long
      StackMap stack:
            aload 1 /* p11 */
            lload 4 /* sessId */
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.buffer:[B
            iconst_0
            iload 2 /* inLen */
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.buffer:[B
            iconst_0
            iload 3 /* outLen */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_Encrypt:(JJ[BIIJ[BII)I
            pop
        10: .line 279
            goto 22
        11: .line 281
      StackMap locals:
      StackMap stack:
            aload 1 /* p11 */
            lload 4 /* sessId */
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.buffer:[B
            iconst_0
            iload 2 /* inLen */
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.buffer:[B
            iconst_0
            iload 3 /* outLen */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_Decrypt:(JJ[BIIJ[BII)I
            pop
        12: .line 282
            goto 22
        13: .line 284
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.maxInputSize:I
            newarray 8
            astore 6 /* tmpBuffer */
        start local 6 // byte[] tmpBuffer
        14: .line 285
            aload 1 /* p11 */
            lload 4 /* sessId */
            aload 6 /* tmpBuffer */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_Sign:(J[B)[B
            pop
        15: .line 286
            goto 22
        end local 6 // byte[] tmpBuffer
        16: .line 288
      StackMap locals:
      StackMap stack:
            aload 1 /* p11 */
            lload 4 /* sessId */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.buffer:[B
            iconst_0
            iload 2 /* inLen */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.buffer:[B
        17: .line 289
            iconst_0
            iload 3 /* outLen */
        18: .line 288
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_VerifyRecover:(J[BII[BII)I
            pop
        19: .line 290
            goto 22
        20: .line 292
      StackMap locals:
      StackMap stack:
            new java.security.ProviderException
            dup
            ldc "internal error"
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // long sessId
        end local 3 // int outLen
        end local 2 // int inLen
        end local 1 // sun.security.pkcs11.wrapper.PKCS11 p11
        21: .line 294
      StackMap locals: sun.security.pkcs11.P11RSACipher
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
            pop
        22: .line 298
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   23     0       this  Lsun/security/pkcs11/P11RSACipher;
            5   21     1        p11  Lsun/security/pkcs11/wrapper/PKCS11;
            6   21     2      inLen  I
            7   21     3     outLen  I
            8   21     4     sessId  J
           14   16     6  tmpBuffer  [B
      Exception table:
        from    to  target  type
           4    21      21  Class sun.security.pkcs11.wrapper.PKCS11Exception

  private void ensureInitialized();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.security.pkcs11.P11RSACipher this
         0: .line 301
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.ensureValid:()V
         1: .line 302
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.initialized:Z
            ifne 3
         2: .line 303
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11RSACipher.initialize:()V
         3: .line 305
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/security/pkcs11/P11RSACipher;
    Exceptions:
      throws sun.security.pkcs11.wrapper.PKCS11Exception

  private void initialize();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=5, args_size=1
        start local 0 // sun.security.pkcs11.P11RSACipher this
         0: .line 308
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            ifnonnull 4
         1: .line 309
            new java.security.ProviderException
            dup
         2: .line 310
            ldc "Operation cannot be performed without calling engineInit first"
         3: .line 309
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 313
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.getKeyID:()J
            lstore 1 /* keyID */
        start local 1 // long keyID
         5: .line 315
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
            ifnonnull 7
         6: .line 316
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.getOpSession:()Lsun/security/pkcs11/Session;
            putfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
         7: .line 318
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            astore 3 /* p11 */
        start local 3 // sun.security.pkcs11.wrapper.PKCS11 p11
         8: .line 319
            new sun.security.pkcs11.wrapper.CK_MECHANISM
            dup
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.mechanism:J
            invokespecial sun.security.pkcs11.wrapper.CK_MECHANISM.<init>:(J)V
            astore 4 /* ckMechanism */
        start local 4 // sun.security.pkcs11.wrapper.CK_MECHANISM ckMechanism
         9: .line 320
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.mode:I
            tableswitch { // 1 - 4
                    1: 10
                    2: 12
                    3: 14
                    4: 16
              default: 18
          }
        10: .line 322
      StackMap locals: sun.security.pkcs11.wrapper.PKCS11 sun.security.pkcs11.wrapper.CK_MECHANISM
      StackMap stack:
            aload 3 /* p11 */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            aload 4 /* ckMechanism */
            lload 1 /* keyID */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_EncryptInit:(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J)V
        11: .line 323
            goto 19
        12: .line 325
      StackMap locals:
      StackMap stack:
            aload 3 /* p11 */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            aload 4 /* ckMechanism */
            lload 1 /* keyID */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptInit:(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J)V
        13: .line 326
            goto 19
        14: .line 328
      StackMap locals:
      StackMap stack:
            aload 3 /* p11 */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            aload 4 /* ckMechanism */
            lload 1 /* keyID */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_SignInit:(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J)V
        15: .line 329
            goto 19
        16: .line 331
      StackMap locals:
      StackMap stack:
            aload 3 /* p11 */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            aload 4 /* ckMechanism */
            lload 1 /* keyID */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_VerifyRecoverInit:(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J)V
        17: .line 332
            goto 19
        18: .line 334
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            ldc "internal error"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        19: .line 336
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11RSACipher.bufOfs:I
        20: .line 337
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11RSACipher.initialized:Z
        end local 4 // sun.security.pkcs11.wrapper.CK_MECHANISM ckMechanism
        end local 3 // sun.security.pkcs11.wrapper.PKCS11 p11
        21: .line 338
            goto 26
      StackMap locals: sun.security.pkcs11.P11RSACipher long
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
        22: astore 3 /* e */
        start local 3 // sun.security.pkcs11.wrapper.PKCS11Exception e
        23: .line 339
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        24: .line 340
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            putfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
        25: .line 341
            aload 3 /* e */
            athrow
        end local 3 // sun.security.pkcs11.wrapper.PKCS11Exception e
        26: .line 343
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long keyID
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   27     0         this  Lsun/security/pkcs11/P11RSACipher;
            5   27     1        keyID  J
            8   21     3          p11  Lsun/security/pkcs11/wrapper/PKCS11;
            9   21     4  ckMechanism  Lsun/security/pkcs11/wrapper/CK_MECHANISM;
           23   26     3            e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           5    21      22  Class sun.security.pkcs11.wrapper.PKCS11Exception
    Exceptions:
      throws sun.security.pkcs11.wrapper.PKCS11Exception

  private void implUpdate(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // sun.security.pkcs11.P11RSACipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
         0: .line 347
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11RSACipher.ensureInitialized:()V
         1: .line 348
            goto 4
      StackMap locals:
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
         2: astore 4 /* e */
        start local 4 // sun.security.pkcs11.wrapper.PKCS11Exception e
         3: .line 349
            new java.security.ProviderException
            dup
            ldc "update() failed"
            aload 4 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 4 // sun.security.pkcs11.wrapper.PKCS11Exception e
         4: .line 351
      StackMap locals:
      StackMap stack:
            iload 3 /* inLen */
            ifeq 5
            aload 1 /* in */
            ifnonnull 6
         5: .line 352
      StackMap locals:
      StackMap stack:
            return
         6: .line 354
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.bufOfs:I
            iload 3 /* inLen */
            iadd
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.maxInputSize:I
            if_icmple 9
         7: .line 355
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.maxInputSize:I
            iconst_1
            iadd
            putfield sun.security.pkcs11.P11RSACipher.bufOfs:I
         8: .line 356
            return
         9: .line 358
      StackMap locals:
      StackMap stack:
            aload 1 /* in */
            iload 2 /* inOfs */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.buffer:[B
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.bufOfs:I
            iload 3 /* inLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 359
            aload 0 /* this */
            dup
            getfield sun.security.pkcs11.P11RSACipher.bufOfs:I
            iload 3 /* inLen */
            iadd
            putfield sun.security.pkcs11.P11RSACipher.bufOfs:I
        11: .line 360
            return
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   12     0   this  Lsun/security/pkcs11/P11RSACipher;
            0   12     1     in  [B
            0   12     2  inOfs  I
            0   12     3  inLen  I
            3    4     4      e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           0     1       2  Class sun.security.pkcs11.wrapper.PKCS11Exception
    MethodParameters:
       Name  Flags
      in     
      inOfs  
      inLen  

  private int implDoFinal(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=13, locals=9, args_size=4
        start local 0 // sun.security.pkcs11.P11RSACipher this
        start local 1 // byte[] out
        start local 2 // int outOfs
        start local 3 // int outLen
         0: .line 364
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.bufOfs:I
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.maxInputSize:I
            if_icmple 4
         1: .line 365
            new javax.crypto.IllegalBlockSizeException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Data must not be longer than "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         2: .line 366
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.maxInputSize:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " bytes"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 365
            invokespecial javax.crypto.IllegalBlockSizeException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 369
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11RSACipher.ensureInitialized:()V
         5: .line 370
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            astore 4 /* p11 */
        start local 4 // sun.security.pkcs11.wrapper.PKCS11 p11
         6: .line 372
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.mode:I
            tableswitch { // 1 - 4
                    1: 7
                    2: 11
                    3: 15
                    4: 27
              default: 31
          }
         7: .line 374
      StackMap locals: sun.security.pkcs11.wrapper.PKCS11
      StackMap stack:
            aload 4 /* p11 */
         8: .line 375
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.buffer:[B
            iconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.bufOfs:I
            lconst_0
            aload 1 /* out */
            iload 2 /* outOfs */
            iload 3 /* outLen */
         9: .line 374
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_Encrypt:(JJ[BIIJ[BII)I
            istore 5 /* n */
        start local 5 // int n
        10: .line 376
            goto 32
        end local 5 // int n
        11: .line 378
      StackMap locals:
      StackMap stack:
            aload 4 /* p11 */
        12: .line 379
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.buffer:[B
            iconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.bufOfs:I
            lconst_0
            aload 1 /* out */
            iload 2 /* outOfs */
            iload 3 /* outLen */
        13: .line 378
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_Decrypt:(JJ[BIIJ[BII)I
            istore 5 /* n */
        start local 5 // int n
        14: .line 380
            goto 32
        end local 5 // int n
        15: .line 382
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.bufOfs:I
            newarray 8
            astore 6 /* tmpBuffer */
        start local 6 // byte[] tmpBuffer
        16: .line 383
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.buffer:[B
            iconst_0
            aload 6 /* tmpBuffer */
            iconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.bufOfs:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        17: .line 384
            aload 4 /* p11 */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            aload 6 /* tmpBuffer */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_Sign:(J[B)[B
            astore 6 /* tmpBuffer */
        18: .line 385
            aload 6 /* tmpBuffer */
            arraylength
            iload 3 /* outLen */
            if_icmple 24
        19: .line 386
            new javax.crypto.BadPaddingException
            dup
        20: .line 387
            new java.lang.StringBuilder
            dup
            ldc "Output buffer ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 3 /* outLen */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ") is too small to "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        21: .line 388
            ldc "hold the produced data ("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 6 /* tmpBuffer */
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        22: .line 387
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        23: .line 386
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            athrow
        24: .line 390
      StackMap locals: sun.security.pkcs11.P11RSACipher byte[] int int sun.security.pkcs11.wrapper.PKCS11 top byte[]
      StackMap stack:
            aload 6 /* tmpBuffer */
            iconst_0
            aload 1 /* out */
            iload 2 /* outOfs */
            aload 6 /* tmpBuffer */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        25: .line 391
            aload 6 /* tmpBuffer */
            arraylength
            istore 5 /* n */
        start local 5 // int n
        26: .line 392
            goto 32
        end local 6 // byte[] tmpBuffer
        end local 5 // int n
        27: .line 394
      StackMap locals: sun.security.pkcs11.P11RSACipher byte[] int int sun.security.pkcs11.wrapper.PKCS11
      StackMap stack:
            aload 4 /* p11 */
        28: .line 395
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.buffer:[B
            iconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.bufOfs:I
            aload 1 /* out */
            iload 2 /* outOfs */
            iload 3 /* outLen */
        29: .line 394
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_VerifyRecover:(J[BII[BII)I
            istore 5 /* n */
        start local 5 // int n
        30: .line 396
            goto 32
        end local 5 // int n
        31: .line 398
      StackMap locals:
      StackMap stack:
            new java.security.ProviderException
            dup
            ldc "internal error"
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
        start local 5 // int n
        32: .line 400
      StackMap locals: int
      StackMap stack:
            iload 5 /* n */
            istore 8
        33: .line 405
            aload 0 /* this */
            iconst_0
            invokevirtual sun.security.pkcs11.P11RSACipher.reset:(Z)V
        34: .line 400
            iload 8
            ireturn
        end local 5 // int n
        end local 4 // sun.security.pkcs11.wrapper.PKCS11 p11
        35: .line 401
      StackMap locals: sun.security.pkcs11.P11RSACipher byte[] int int
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
            astore 4 /* e */
        start local 4 // sun.security.pkcs11.wrapper.PKCS11Exception e
        36: .line 402
            new javax.crypto.BadPaddingException
            dup
        37: .line 403
            ldc "doFinal() failed"
        38: .line 402
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
        39: .line 403
            aload 4 /* e */
            invokevirtual javax.crypto.BadPaddingException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
        40: .line 402
            checkcast javax.crypto.BadPaddingException
            athrow
        end local 4 // sun.security.pkcs11.wrapper.PKCS11Exception e
        41: .line 404
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 7
        42: .line 405
            aload 0 /* this */
            iconst_0
            invokevirtual sun.security.pkcs11.P11RSACipher.reset:(Z)V
        43: .line 406
            aload 7
            athrow
        end local 3 // int outLen
        end local 2 // int outOfs
        end local 1 // byte[] out
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   44     0       this  Lsun/security/pkcs11/P11RSACipher;
            0   44     1        out  [B
            0   44     2     outOfs  I
            0   44     3     outLen  I
            6   35     4        p11  Lsun/security/pkcs11/wrapper/PKCS11;
           10   11     5          n  I
           14   15     5          n  I
           26   27     5          n  I
           30   31     5          n  I
           32   35     5          n  I
           16   27     6  tmpBuffer  [B
           36   41     4          e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           4    33      35  Class sun.security.pkcs11.wrapper.PKCS11Exception
           4    33      41  any
          35    41      41  any
    Exceptions:
      throws javax.crypto.BadPaddingException, javax.crypto.IllegalBlockSizeException
    MethodParameters:
        Name  Flags
      out     
      outOfs  
      outLen  

  protected byte[] engineUpdate(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // sun.security.pkcs11.P11RSACipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
         0: .line 411
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            invokevirtual sun.security.pkcs11.P11RSACipher.implUpdate:([BII)V
         1: .line 412
            getstatic sun.security.pkcs11.P11RSACipher.B0:[B
            areturn
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lsun/security/pkcs11/P11RSACipher;
            0    2     1     in  [B
            0    2     2  inOfs  I
            0    2     3  inLen  I
    MethodParameters:
       Name  Flags
      in     
      inOfs  
      inLen  

  protected int engineUpdate(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=6, args_size=6
        start local 0 // sun.security.pkcs11.P11RSACipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
        start local 4 // byte[] out
        start local 5 // int outOfs
         0: .line 418
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            invokevirtual sun.security.pkcs11.P11RSACipher.implUpdate:([BII)V
         1: .line 419
            iconst_0
            ireturn
        end local 5 // int outOfs
        end local 4 // byte[] out
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lsun/security/pkcs11/P11RSACipher;
            0    2     1      in  [B
            0    2     2   inOfs  I
            0    2     3   inLen  I
            0    2     4     out  [B
            0    2     5  outOfs  I
    Exceptions:
      throws javax.crypto.ShortBufferException
    MethodParameters:
        Name  Flags
      in      
      inOfs   
      inLen   
      out     
      outOfs  

  protected byte[] engineDoFinal(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // sun.security.pkcs11.P11RSACipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
         0: .line 425
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            invokevirtual sun.security.pkcs11.P11RSACipher.implUpdate:([BII)V
         1: .line 426
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.buffer:[B
            iconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.buffer:[B
            arraylength
            invokevirtual sun.security.pkcs11.P11RSACipher.implDoFinal:([BII)I
            istore 4 /* n */
        start local 4 // int n
         2: .line 427
            iload 4 /* n */
            newarray 8
            astore 5 /* out */
        start local 5 // byte[] out
         3: .line 428
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.buffer:[B
            iconst_0
            aload 5 /* out */
            iconst_0
            iload 4 /* n */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 429
            aload 5 /* out */
            areturn
        end local 5 // byte[] out
        end local 4 // int n
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lsun/security/pkcs11/P11RSACipher;
            0    5     1     in  [B
            0    5     2  inOfs  I
            0    5     3  inLen  I
            2    5     4      n  I
            3    5     5    out  [B
    Exceptions:
      throws javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    MethodParameters:
       Name  Flags
      in     
      inOfs  
      inLen  

  protected int engineDoFinal(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=6, args_size=6
        start local 0 // sun.security.pkcs11.P11RSACipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
        start local 4 // byte[] out
        start local 5 // int outOfs
         0: .line 436
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            invokevirtual sun.security.pkcs11.P11RSACipher.implUpdate:([BII)V
         1: .line 437
            aload 0 /* this */
            aload 4 /* out */
            iload 5 /* outOfs */
            aload 4 /* out */
            arraylength
            iload 5 /* outOfs */
            isub
            invokevirtual sun.security.pkcs11.P11RSACipher.implDoFinal:([BII)I
            ireturn
        end local 5 // int outOfs
        end local 4 // byte[] out
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lsun/security/pkcs11/P11RSACipher;
            0    2     1      in  [B
            0    2     2   inOfs  I
            0    2     3   inLen  I
            0    2     4     out  [B
            0    2     5  outOfs  I
    Exceptions:
      throws javax.crypto.ShortBufferException, javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    MethodParameters:
        Name  Flags
      in      
      inOfs   
      inLen   
      out     
      outOfs  

  private byte[] doFinal();
    descriptor: ()[B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // sun.security.pkcs11.P11RSACipher this
         0: .line 442
            sipush 2048
            newarray 8
            astore 1 /* t */
        start local 1 // byte[] t
         1: .line 443
            aload 0 /* this */
            aload 1 /* t */
            iconst_0
            aload 1 /* t */
            arraylength
            invokevirtual sun.security.pkcs11.P11RSACipher.implDoFinal:([BII)I
            istore 2 /* n */
        start local 2 // int n
         2: .line 444
            iload 2 /* n */
            newarray 8
            astore 3 /* out */
        start local 3 // byte[] out
         3: .line 445
            aload 1 /* t */
            iconst_0
            aload 3 /* out */
            iconst_0
            iload 2 /* n */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 446
            aload 3 /* out */
            areturn
        end local 3 // byte[] out
        end local 2 // int n
        end local 1 // byte[] t
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/pkcs11/P11RSACipher;
            1    5     1     t  [B
            2    5     2     n  I
            3    5     3   out  [B
    Exceptions:
      throws javax.crypto.BadPaddingException, javax.crypto.IllegalBlockSizeException

  protected byte[] engineWrap(java.security.Key);
    descriptor: (Ljava/security/Key;)[B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=8, locals=12, args_size=2
        start local 0 // sun.security.pkcs11.P11RSACipher this
        start local 1 // java.security.Key key
         0: .line 452
            aload 1 /* key */
            invokeinterface java.security.Key.getAlgorithm:()Ljava/lang/String;
            astore 2 /* keyAlg */
        start local 2 // java.lang.String keyAlg
         1: .line 453
            aconst_null
            astore 3 /* sKey */
        start local 3 // sun.security.pkcs11.P11Key sKey
         2: .line 458
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            aload 1 /* key */
            aload 2 /* keyAlg */
            invokestatic sun.security.pkcs11.P11SecretKeyFactory.convertKey:(Lsun/security/pkcs11/Token;Ljava/security/Key;Ljava/lang/String;)Lsun/security/pkcs11/P11Key;
            astore 3 /* sKey */
         3: .line 459
            goto 20
      StackMap locals: sun.security.pkcs11.P11RSACipher java.security.Key java.lang.String sun.security.pkcs11.P11Key
      StackMap stack: java.security.InvalidKeyException
         4: astore 4 /* ike */
        start local 4 // java.security.InvalidKeyException ike
         5: .line 460
            aload 1 /* key */
            invokeinterface java.security.Key.getEncoded:()[B
            astore 5 /* toBeWrappedKey */
        start local 5 // byte[] toBeWrappedKey
         6: .line 461
            aload 5 /* toBeWrappedKey */
            ifnonnull 10
         7: .line 462
            new java.security.InvalidKeyException
            dup
         8: .line 463
            ldc "wrap() failed, no encoding available"
            aload 4 /* ike */
         9: .line 462
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        10: .line 466
      StackMap locals: java.security.InvalidKeyException byte[]
      StackMap stack:
            aload 0 /* this */
            iconst_1
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11RSACipher.implInit:(ILjava/security/Key;)V
        11: .line 467
            aload 0 /* this */
            aload 5 /* toBeWrappedKey */
            iconst_0
            aload 5 /* toBeWrappedKey */
            arraylength
            invokevirtual sun.security.pkcs11.P11RSACipher.implUpdate:([BII)V
        12: .line 469
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11RSACipher.doFinal:()[B
            astore 8
        13: .line 475
            aload 0 /* this */
            iconst_3
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11RSACipher.implInit:(ILjava/security/Key;)V
        14: .line 469
            aload 8
            areturn
        15: .line 470
      StackMap locals:
      StackMap stack: javax.crypto.BadPaddingException
            astore 6 /* bpe */
        start local 6 // javax.crypto.BadPaddingException bpe
        16: .line 472
            new java.security.InvalidKeyException
            dup
            ldc "wrap() failed"
            aload 6 /* bpe */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 6 // javax.crypto.BadPaddingException bpe
        17: .line 473
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 7
        18: .line 475
            aload 0 /* this */
            iconst_3
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11RSACipher.implInit:(ILjava/security/Key;)V
        19: .line 476
            aload 7
            athrow
        end local 5 // byte[] toBeWrappedKey
        end local 4 // java.security.InvalidKeyException ike
        20: .line 478
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 4 /* s */
        start local 4 // sun.security.pkcs11.Session s
        21: .line 479
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.getKeyID:()J
            lstore 5 /* p11KeyID */
        start local 5 // long p11KeyID
        22: .line 480
            aload 3 /* sKey */
            invokevirtual sun.security.pkcs11.P11Key.getKeyID:()J
            lstore 7 /* sKeyID */
        start local 7 // long sKeyID
        23: .line 482
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.getOpSession:()Lsun/security/pkcs11/Session;
            astore 4 /* s */
        24: .line 483
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 4 /* s */
            invokevirtual sun.security.pkcs11.Session.id:()J
            new sun.security.pkcs11.wrapper.CK_MECHANISM
            dup
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.mechanism:J
            invokespecial sun.security.pkcs11.wrapper.CK_MECHANISM.<init>:(J)V
        25: .line 484
            lload 5 /* p11KeyID */
            lload 7 /* sKeyID */
        26: .line 483
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_WrapKey:(JLsun/security/pkcs11/wrapper/CK_MECHANISM;JJ)[B
            astore 11
        27: .line 488
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        28: .line 489
            aload 3 /* sKey */
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        29: .line 490
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            aload 4 /* s */
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            pop
        30: .line 483
            aload 11
            areturn
        31: .line 485
      StackMap locals: sun.security.pkcs11.P11RSACipher java.security.Key java.lang.String sun.security.pkcs11.P11Key sun.security.pkcs11.Session long long
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
            astore 9 /* e */
        start local 9 // sun.security.pkcs11.wrapper.PKCS11Exception e
        32: .line 486
            new java.security.InvalidKeyException
            dup
            ldc "wrap() failed"
            aload 9 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 9 // sun.security.pkcs11.wrapper.PKCS11Exception e
        33: .line 487
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 10
        34: .line 488
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        35: .line 489
            aload 3 /* sKey */
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        36: .line 490
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            aload 4 /* s */
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            pop
        37: .line 491
            aload 10
            athrow
        end local 7 // long sKeyID
        end local 5 // long p11KeyID
        end local 4 // sun.security.pkcs11.Session s
        end local 3 // sun.security.pkcs11.P11Key sKey
        end local 2 // java.lang.String keyAlg
        end local 1 // java.security.Key key
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   38     0            this  Lsun/security/pkcs11/P11RSACipher;
            0   38     1             key  Ljava/security/Key;
            1   38     2          keyAlg  Ljava/lang/String;
            2   38     3            sKey  Lsun/security/pkcs11/P11Key;
            5   20     4             ike  Ljava/security/InvalidKeyException;
            6   20     5  toBeWrappedKey  [B
           16   17     6             bpe  Ljavax/crypto/BadPaddingException;
           21   38     4               s  Lsun/security/pkcs11/Session;
           22   38     5        p11KeyID  J
           23   38     7          sKeyID  J
           32   33     9               e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           2     3       4  Class java.security.InvalidKeyException
          12    13      15  Class javax.crypto.BadPaddingException
          12    13      17  any
          15    17      17  any
          23    27      31  Class sun.security.pkcs11.wrapper.PKCS11Exception
          23    27      33  any
          31    33      33  any
    Exceptions:
      throws java.security.InvalidKeyException, javax.crypto.IllegalBlockSizeException
    MethodParameters:
      Name  Flags
      key   

  protected java.security.Key engineUnwrap(byte[], java.lang.String, int);
    descriptor: ([BLjava/lang/String;I)Ljava/security/Key;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=9, locals=17, args_size=4
        start local 0 // sun.security.pkcs11.P11RSACipher this
        start local 1 // byte[] wrappedKey
        start local 2 // java.lang.String algorithm
        start local 3 // int type
         0: .line 500
            aload 2 /* algorithm */
            ldc "TlsRsaPremasterSecret"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
         1: .line 499
            istore 4 /* isTlsRsaPremasterSecret */
        start local 4 // boolean isTlsRsaPremasterSecret
         2: .line 501
            aconst_null
            astore 5 /* failover */
        start local 5 // java.lang.Exception failover
         3: .line 504
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.supportsRawSecretKeyImport:()Z
            ifeq 35
         4: .line 506
            aload 0 /* this */
            iconst_2
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11RSACipher.implInit:(ILjava/security/Key;)V
         5: .line 508
            aload 1 /* wrappedKey */
            arraylength
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.maxInputSize:I
            if_icmple 7
         6: .line 509
            new java.security.InvalidKeyException
            dup
            ldc "Key is too long for unwrapping"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 512
      StackMap locals: int java.lang.Exception
      StackMap stack:
            aconst_null
            astore 6 /* encoded */
        start local 6 // byte[] encoded
         8: .line 513
            aload 0 /* this */
            aload 1 /* wrappedKey */
            iconst_0
            aload 1 /* wrappedKey */
            arraylength
            invokevirtual sun.security.pkcs11.P11RSACipher.implUpdate:([BII)V
         9: .line 515
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11RSACipher.doFinal:()[B
            astore 6 /* encoded */
        10: .line 516
            goto 18
      StackMap locals: sun.security.pkcs11.P11RSACipher byte[] java.lang.String int int java.lang.Exception byte[]
      StackMap stack: javax.crypto.BadPaddingException
        11: astore 7 /* e */
        start local 7 // javax.crypto.BadPaddingException e
        12: .line 517
            iload 4 /* isTlsRsaPremasterSecret */
            ifeq 15
        13: .line 518
            aload 7 /* e */
            astore 5 /* failover */
        14: .line 519
            goto 18
        15: .line 520
      StackMap locals: javax.crypto.BadPaddingException
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            ldc "Unwrapping failed"
            aload 7 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 7 // javax.crypto.BadPaddingException e
        16: .line 522
      StackMap locals: sun.security.pkcs11.P11RSACipher byte[] java.lang.String int int java.lang.Exception byte[]
      StackMap stack: javax.crypto.IllegalBlockSizeException
            astore 7 /* e */
        start local 7 // javax.crypto.IllegalBlockSizeException e
        17: .line 524
            new java.security.InvalidKeyException
            dup
            ldc "Unwrapping failed"
            aload 7 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 7 // javax.crypto.IllegalBlockSizeException e
        18: .line 527
      StackMap locals:
      StackMap stack:
            iload 4 /* isTlsRsaPremasterSecret */
            ifeq 29
        19: .line 528
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
            instanceof sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec
            ifne 23
        20: .line 529
            new java.lang.IllegalStateException
            dup
        21: .line 530
            ldc "No TlsRsaPremasterSecretParameterSpec specified"
        22: .line 529
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        23: .line 535
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
            checkcast sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec
        24: .line 534
            astore 7 /* psps */
        start local 7 // sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec psps
        25: .line 537
            aload 7 /* psps */
            invokevirtual sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec.getClientVersion:()I
            aload 7 /* psps */
            invokevirtual sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec.getServerVersion:()I
        26: .line 538
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.random:Ljava/security/SecureRandom;
            aload 6 /* encoded */
            aload 5 /* failover */
            ifnull 27
            iconst_1
            goto 28
      StackMap locals: sun.security.pkcs11.P11RSACipher byte[] java.lang.String int int java.lang.Exception byte[] sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec
      StackMap stack: int int java.security.SecureRandom byte[]
        27: iconst_0
        28: .line 536
      StackMap locals: sun.security.pkcs11.P11RSACipher byte[] java.lang.String int int java.lang.Exception byte[] sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec
      StackMap stack: int int java.security.SecureRandom byte[] int
            invokestatic sun.security.util.KeyUtil.checkTlsPreMasterSecretKey:(IILjava/security/SecureRandom;[BZ)[B
            astore 6 /* encoded */
        end local 7 // sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec psps
        29: .line 541
      StackMap locals:
      StackMap stack:
            aload 6 /* encoded */
            aload 2 /* algorithm */
            iload 3 /* type */
            invokestatic sun.security.pkcs11.ConstructKeys.constructKey:([BLjava/lang/String;I)Ljava/security/Key;
            astore 9
        30: .line 544
            aload 0 /* this */
            iconst_4
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11RSACipher.implInit:(ILjava/security/Key;)V
        31: .line 541
            aload 9
            areturn
        end local 6 // byte[] encoded
        32: .line 542
      StackMap locals: sun.security.pkcs11.P11RSACipher byte[] java.lang.String int int java.lang.Exception
      StackMap stack: java.lang.Throwable
            astore 8
        33: .line 544
            aload 0 /* this */
            iconst_4
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11RSACipher.implInit:(ILjava/security/Key;)V
        34: .line 545
            aload 8
            athrow
        35: .line 547
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 6 /* s */
        start local 6 // sun.security.pkcs11.Session s
        36: .line 548
            aconst_null
            astore 7 /* secretKey */
        start local 7 // javax.crypto.SecretKey secretKey
        37: .line 549
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.getKeyID:()J
            lstore 8 /* p11KeyID */
        start local 8 // long p11KeyID
        38: .line 552
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.getObjSession:()Lsun/security/pkcs11/Session;
            astore 6 /* s */
        39: .line 554
            aload 2 /* algorithm */
            invokestatic sun.security.pkcs11.P11SecretKeyFactory.getPKCS11KeyType:(Ljava/lang/String;)J
        40: .line 553
            lstore 10 /* p11KeyType */
        start local 10 // long p11KeyType
        41: .line 555
            iconst_2
            anewarray sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            iconst_0
        42: .line 556
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            lconst_0
            ldc 4
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(JJ)V
            aastore
            dup
            iconst_1
        43: .line 557
            new sun.security.pkcs11.wrapper.CK_ATTRIBUTE
            dup
            ldc 256
            lload 10 /* p11KeyType */
            invokespecial sun.security.pkcs11.wrapper.CK_ATTRIBUTE.<init>:(JJ)V
            aastore
        44: .line 555
            astore 12 /* attributes */
        start local 12 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
        45: .line 559
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
        46: .line 560
            ldc "import"
            ldc 4
            lload 10 /* p11KeyType */
            aload 12 /* attributes */
        47: .line 559
            invokevirtual sun.security.pkcs11.Token.getAttributes:(Ljava/lang/String;JJ[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;
            astore 12 /* attributes */
        48: .line 562
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 6 /* s */
            invokevirtual sun.security.pkcs11.Session.id:()J
        49: .line 563
            new sun.security.pkcs11.wrapper.CK_MECHANISM
            dup
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.mechanism:J
            invokespecial sun.security.pkcs11.wrapper.CK_MECHANISM.<init>:(J)V
            lload 8 /* p11KeyID */
        50: .line 564
            aload 1 /* wrappedKey */
            aload 12 /* attributes */
        51: .line 562
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_UnwrapKey:(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J[B[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)J
            lstore 13 /* keyID */
        start local 13 // long keyID
        52: .line 565
            aload 6 /* s */
            lload 13 /* keyID */
        53: .line 566
            aload 2 /* algorithm */
            sipush 384
            aload 12 /* attributes */
        54: .line 565
            invokestatic sun.security.pkcs11.P11Key.secretKey:(Lsun/security/pkcs11/Session;JLjava/lang/String;I[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)Ljavax/crypto/SecretKey;
            astore 7 /* secretKey */
        end local 13 // long keyID
        end local 12 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
        end local 10 // long p11KeyType
        55: .line 567
            goto 61
      StackMap locals: sun.security.pkcs11.P11RSACipher byte[] java.lang.String int int java.lang.Exception sun.security.pkcs11.Session javax.crypto.SecretKey long
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
        56: astore 10 /* e */
        start local 10 // sun.security.pkcs11.wrapper.PKCS11Exception e
        57: .line 568
            iload 4 /* isTlsRsaPremasterSecret */
            ifeq 60
        58: .line 569
            aload 10 /* e */
            astore 5 /* failover */
        59: .line 570
            goto 61
        60: .line 571
      StackMap locals: sun.security.pkcs11.wrapper.PKCS11Exception
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            ldc "unwrap() failed"
            aload 10 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 10 // sun.security.pkcs11.wrapper.PKCS11Exception e
        61: .line 575
      StackMap locals:
      StackMap stack:
            iload 4 /* isTlsRsaPremasterSecret */
            ifeq 68
        62: .line 577
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.spec:Ljava/security/spec/AlgorithmParameterSpec;
            checkcast sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec
        63: .line 576
            astore 10 /* psps */
        start local 10 // sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec psps
        64: .line 581
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            aload 6 /* s */
        65: .line 582
            aload 5 /* failover */
            aload 7 /* secretKey */
        66: .line 583
            aload 10 /* psps */
            invokevirtual sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec.getClientVersion:()I
            aload 10 /* psps */
            invokevirtual sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec.getServerVersion:()I
        67: .line 581
            invokestatic sun.security.pkcs11.P11RSACipher.polishPreMasterSecretKey:(Lsun/security/pkcs11/Token;Lsun/security/pkcs11/Session;Ljava/lang/Exception;Ljavax/crypto/SecretKey;II)Ljavax/crypto/SecretKey;
            astore 7 /* secretKey */
        end local 10 // sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec psps
        68: .line 586
      StackMap locals:
      StackMap stack:
            aload 7 /* secretKey */
            astore 16
        69: .line 588
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        70: .line 589
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            aload 6 /* s */
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            pop
        71: .line 586
            aload 16
            areturn
        72: .line 587
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 15
        73: .line 588
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        74: .line 589
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            aload 6 /* s */
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            pop
        75: .line 590
            aload 15
            athrow
        end local 8 // long p11KeyID
        end local 7 // javax.crypto.SecretKey secretKey
        end local 6 // sun.security.pkcs11.Session s
        end local 5 // java.lang.Exception failover
        end local 4 // boolean isTlsRsaPremasterSecret
        end local 3 // int type
        end local 2 // java.lang.String algorithm
        end local 1 // byte[] wrappedKey
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0   76     0                     this  Lsun/security/pkcs11/P11RSACipher;
            0   76     1               wrappedKey  [B
            0   76     2                algorithm  Ljava/lang/String;
            0   76     3                     type  I
            2   76     4  isTlsRsaPremasterSecret  Z
            3   76     5                 failover  Ljava/lang/Exception;
            8   32     6                  encoded  [B
           12   16     7                        e  Ljavax/crypto/BadPaddingException;
           17   18     7                        e  Ljavax/crypto/IllegalBlockSizeException;
           25   29     7                     psps  Lsun/security/internal/spec/TlsRsaPremasterSecretParameterSpec;
           36   76     6                        s  Lsun/security/pkcs11/Session;
           37   76     7                secretKey  Ljavax/crypto/SecretKey;
           38   76     8                 p11KeyID  J
           41   55    10               p11KeyType  J
           45   55    12               attributes  [Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;
           52   55    13                    keyID  J
           57   61    10                        e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
           64   68    10                     psps  Lsun/security/internal/spec/TlsRsaPremasterSecretParameterSpec;
      Exception table:
        from    to  target  type
           9    10      11  Class javax.crypto.BadPaddingException
           9    10      16  Class javax.crypto.IllegalBlockSizeException
           5    30      32  any
          38    55      56  Class sun.security.pkcs11.wrapper.PKCS11Exception
          38    69      72  any
    Exceptions:
      throws java.security.InvalidKeyException, java.security.NoSuchAlgorithmException
    MethodParameters:
            Name  Flags
      wrappedKey  
      algorithm   
      type        

  protected int engineGetKeySize(java.security.Key);
    descriptor: (Ljava/security/Key;)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.security.pkcs11.P11RSACipher this
        start local 1 // java.security.Key key
         0: .line 596
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.token:Lsun/security/pkcs11/Token;
            aload 1 /* key */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11RSACipher.algorithm:Ljava/lang/String;
            invokestatic sun.security.pkcs11.P11KeyFactory.convertKey:(Lsun/security/pkcs11/Token;Ljava/security/Key;Ljava/lang/String;)Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.length:()I
            istore 2 /* n */
        start local 2 // int n
         1: .line 597
            iload 2 /* n */
            ireturn
        end local 2 // int n
        end local 1 // java.security.Key key
        end local 0 // sun.security.pkcs11.P11RSACipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/security/pkcs11/P11RSACipher;
            0    2     1   key  Ljava/security/Key;
            1    2     2     n  I
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
      Name  Flags
      key   

  private static javax.crypto.SecretKey polishPreMasterSecretKey(sun.security.pkcs11.Token, sun.security.pkcs11.Session, java.lang.Exception, javax.crypto.SecretKey, int, int);
    descriptor: (Lsun/security/pkcs11/Token;Lsun/security/pkcs11/Session;Ljava/lang/Exception;Ljavax/crypto/SecretKey;II)Ljavax/crypto/SecretKey;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=8, locals=11, args_size=6
        start local 0 // sun.security.pkcs11.Token token
        start local 1 // sun.security.pkcs11.Session session
        start local 2 // java.lang.Exception failover
        start local 3 // javax.crypto.SecretKey unwrappedKey
        start local 4 // int clientVersion
        start local 5 // int serverVersion
         0: .line 606
            new sun.security.pkcs11.wrapper.CK_VERSION
            dup
         1: .line 607
            iload 4 /* clientVersion */
            bipush 8
            iushr
            sipush 255
            iand
            iload 4 /* clientVersion */
            sipush 255
            iand
         2: .line 606
            invokespecial sun.security.pkcs11.wrapper.CK_VERSION.<init>:(II)V
            astore 7 /* version */
        start local 7 // sun.security.pkcs11.wrapper.CK_VERSION version
         3: .line 609
            aload 0 /* token */
         4: .line 610
            ldc "generate"
            ldc 4
         5: .line 611
            ldc 16
            iconst_0
            anewarray sun.security.pkcs11.wrapper.CK_ATTRIBUTE
         6: .line 609
            invokevirtual sun.security.pkcs11.Token.getAttributes:(Ljava/lang/String;JJ[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;
            astore 8 /* attributes */
        start local 8 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
         7: .line 612
            aload 0 /* token */
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 1 /* session */
            invokevirtual sun.security.pkcs11.Session.id:()J
         8: .line 613
            new sun.security.pkcs11.wrapper.CK_MECHANISM
            dup
            ldc 880
            aload 7 /* version */
            invokespecial sun.security.pkcs11.wrapper.CK_MECHANISM.<init>:(JLsun/security/pkcs11/wrapper/CK_VERSION;)V
         9: .line 614
            aload 8 /* attributes */
        10: .line 612
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_GenerateKey:(JLsun/security/pkcs11/wrapper/CK_MECHANISM;[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)J
            lstore 9 /* keyID */
        start local 9 // long keyID
        11: .line 615
            aload 1 /* session */
        12: .line 616
            lload 9 /* keyID */
            ldc "TlsRsaPremasterSecret"
            sipush 384
            aload 8 /* attributes */
        13: .line 615
            invokestatic sun.security.pkcs11.P11Key.secretKey:(Lsun/security/pkcs11/Session;JLjava/lang/String;I[Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;)Ljavax/crypto/SecretKey;
            astore 6 /* newKey */
        end local 9 // long keyID
        end local 8 // sun.security.pkcs11.wrapper.CK_ATTRIBUTE[] attributes
        start local 6 // javax.crypto.SecretKey newKey
        14: .line 617
            goto 19
        end local 6 // javax.crypto.SecretKey newKey
      StackMap locals: sun.security.pkcs11.Token sun.security.pkcs11.Session java.lang.Exception javax.crypto.SecretKey int int top sun.security.pkcs11.wrapper.CK_VERSION
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
        15: astore 8 /* e */
        start local 8 // sun.security.pkcs11.wrapper.PKCS11Exception e
        16: .line 618
            new java.security.ProviderException
            dup
        17: .line 619
            ldc "Could not generate premaster secret"
            aload 8 /* e */
        18: .line 618
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 8 // sun.security.pkcs11.wrapper.PKCS11Exception e
        start local 6 // javax.crypto.SecretKey newKey
        19: .line 622
      StackMap locals: sun.security.pkcs11.Token sun.security.pkcs11.Session java.lang.Exception javax.crypto.SecretKey int int javax.crypto.SecretKey sun.security.pkcs11.wrapper.CK_VERSION
      StackMap stack:
            aload 2 /* failover */
            ifnonnull 20
            aload 3 /* unwrappedKey */
            goto 21
      StackMap locals:
      StackMap stack:
        20: aload 6 /* newKey */
      StackMap locals:
      StackMap stack: javax.crypto.SecretKey
        21: areturn
        end local 7 // sun.security.pkcs11.wrapper.CK_VERSION version
        end local 6 // javax.crypto.SecretKey newKey
        end local 5 // int serverVersion
        end local 4 // int clientVersion
        end local 3 // javax.crypto.SecretKey unwrappedKey
        end local 2 // java.lang.Exception failover
        end local 1 // sun.security.pkcs11.Session session
        end local 0 // sun.security.pkcs11.Token token
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   22     0          token  Lsun/security/pkcs11/Token;
            0   22     1        session  Lsun/security/pkcs11/Session;
            0   22     2       failover  Ljava/lang/Exception;
            0   22     3   unwrappedKey  Ljavax/crypto/SecretKey;
            0   22     4  clientVersion  I
            0   22     5  serverVersion  I
           14   15     6         newKey  Ljavax/crypto/SecretKey;
           19   22     6         newKey  Ljavax/crypto/SecretKey;
            3   22     7        version  Lsun/security/pkcs11/wrapper/CK_VERSION;
            7   14     8     attributes  [Lsun/security/pkcs11/wrapper/CK_ATTRIBUTE;
           11   14     9          keyID  J
           16   19     8              e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           3    14      15  Class sun.security.pkcs11.wrapper.PKCS11Exception
    MethodParameters:
               Name  Flags
      token          
      session        
      failover       
      unwrappedKey   
      clientVersion  
      serverVersion  
}
SourceFile: "P11RSACipher.java"