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

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

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

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

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

  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 java.lang.String keyAlgorithm;
    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 sun.security.pkcs11.P11Key p11Key;
    descriptor: Lsun/security/pkcs11/P11Key;
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

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

  private sun.security.pkcs11.P11Cipher$Padding paddingObj;
    descriptor: Lsun/security/pkcs11/P11Cipher$Padding;
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

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

  void <init>(sun.security.pkcs11.Token, java.lang.String, long);
    descriptor: (Lsun/security/pkcs11/Token;Ljava/lang/String;J)V
    flags: (0x0000) 
    Code:
      stack=4, locals=9, args_size=4
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // sun.security.pkcs11.Token token
        start local 2 // java.lang.String algorithm
        start local 3 // long mechanism
         0: .line 174
            aload 0 /* this */
            invokespecial javax.crypto.CipherSpi.<init>:()V
         1: .line 170
            aload 0 /* this */
            iconst_m1
            putfield sun.security.pkcs11.P11Cipher.fixedKeySize:I
         2: .line 175
            aload 0 /* this */
            aload 1 /* token */
            putfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
         3: .line 176
            aload 0 /* this */
            aload 2 /* algorithm */
            putfield sun.security.pkcs11.P11Cipher.algorithm:Ljava/lang/String;
         4: .line 177
            aload 0 /* this */
            lload 3 /* mechanism */
            putfield sun.security.pkcs11.P11Cipher.mechanism:J
         5: .line 179
            aload 2 /* algorithm */
            ldc "/"
            invokevirtual java.lang.String.split:(Ljava/lang/String;)[Ljava/lang/String;
            astore 5 /* algoParts */
        start local 5 // java.lang.String[] algoParts
         6: .line 181
            aload 5 /* algoParts */
            iconst_0
            aaload
            ldc "AES"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 13
         7: .line 182
            aload 0 /* this */
            bipush 16
            putfield sun.security.pkcs11.P11Cipher.blockSize:I
         8: .line 183
            aload 5 /* algoParts */
            iconst_0
            aaload
            bipush 95
            invokevirtual java.lang.String.indexOf:(I)I
            istore 6 /* index */
        start local 6 // int index
         9: .line 184
            iload 6 /* index */
            iconst_m1
            if_icmpeq 11
        10: .line 186
            aload 0 /* this */
            aload 5 /* algoParts */
            iconst_0
            aaload
            iload 6 /* index */
            iconst_1
            iadd
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/String;)I
            bipush 8
            idiv
            putfield sun.security.pkcs11.P11Cipher.fixedKeySize:I
        11: .line 188
      StackMap locals: sun.security.pkcs11.P11Cipher sun.security.pkcs11.Token java.lang.String long java.lang.String[] int
      StackMap stack:
            aload 0 /* this */
            ldc "AES"
            putfield sun.security.pkcs11.P11Cipher.keyAlgorithm:Ljava/lang/String;
        end local 6 // int index
        12: .line 189
            goto 19
        13: .line 190
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 5 /* algoParts */
            iconst_0
            aaload
            putfield sun.security.pkcs11.P11Cipher.keyAlgorithm:Ljava/lang/String;
        14: .line 191
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.keyAlgorithm:Ljava/lang/String;
            ldc "RC4"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 16
        15: .line 192
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.keyAlgorithm:Ljava/lang/String;
            ldc "ARCFOUR"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 18
        16: .line 193
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.blockSize:I
        17: .line 194
            goto 19
        18: .line 195
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 8
            putfield sun.security.pkcs11.P11Cipher.blockSize:I
        19: .line 198
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
        20: .line 199
            aload 5 /* algoParts */
            arraylength
            iconst_1
            if_icmple 21
            aload 0 /* this */
            aload 5 /* algoParts */
            iconst_1
            aaload
            invokevirtual sun.security.pkcs11.P11Cipher.parseMode:(Ljava/lang/String;)I
            goto 22
      StackMap locals:
      StackMap stack: sun.security.pkcs11.P11Cipher
        21: iconst_3
        22: .line 198
      StackMap locals: sun.security.pkcs11.P11Cipher sun.security.pkcs11.Token java.lang.String long java.lang.String[]
      StackMap stack: sun.security.pkcs11.P11Cipher int
            putfield sun.security.pkcs11.P11Cipher.blockMode:I
        23: .line 200
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockSize:I
            ifne 24
            ldc "NoPadding"
            goto 25
      StackMap locals:
      StackMap stack:
        24: ldc "PKCS5Padding"
      StackMap locals:
      StackMap stack: java.lang.String
        25: astore 6 /* defPadding */
        start local 6 // java.lang.String defPadding
        26: .line 202
            aload 5 /* algoParts */
            arraylength
            iconst_2
            if_icmple 27
            aload 5 /* algoParts */
            iconst_2
            aaload
            goto 28
      StackMap locals: java.lang.String
      StackMap stack:
        27: aload 6 /* defPadding */
        28: .line 201
      StackMap locals:
      StackMap stack: java.lang.String
            astore 7 /* paddingStr */
        start local 7 // java.lang.String paddingStr
        29: .line 204
            aload 0 /* this */
            aload 7 /* paddingStr */
            invokevirtual sun.security.pkcs11.P11Cipher.engineSetPadding:(Ljava/lang/String;)V
        30: .line 205
            goto 33
      StackMap locals: sun.security.pkcs11.P11Cipher sun.security.pkcs11.Token java.lang.String long java.lang.String[] java.lang.String java.lang.String
      StackMap stack: javax.crypto.NoSuchPaddingException
        31: astore 8 /* nspe */
        start local 8 // javax.crypto.NoSuchPaddingException nspe
        32: .line 207
            new java.security.ProviderException
            dup
            aload 8 /* nspe */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 8 // javax.crypto.NoSuchPaddingException nspe
        33: .line 209
      StackMap locals:
      StackMap stack:
            return
        end local 7 // java.lang.String paddingStr
        end local 6 // java.lang.String defPadding
        end local 5 // java.lang.String[] algoParts
        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.P11Cipher this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   34     0        this  Lsun/security/pkcs11/P11Cipher;
            0   34     1       token  Lsun/security/pkcs11/Token;
            0   34     2   algorithm  Ljava/lang/String;
            0   34     3   mechanism  J
            6   34     5   algoParts  [Ljava/lang/String;
            9   12     6       index  I
           26   34     6  defPadding  Ljava/lang/String;
           29   34     7  paddingStr  Ljava/lang/String;
           32   33     8        nspe  Ljavax/crypto/NoSuchPaddingException;
      Exception table:
        from    to  target  type
          29    30      31  Class javax.crypto.NoSuchPaddingException
    Exceptions:
      throws sun.security.pkcs11.wrapper.PKCS11Exception, java.security.NoSuchAlgorithmException
    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.P11Cipher this
        start local 1 // java.lang.String mode
         0: .line 214
            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
        end local 1 // java.lang.String mode
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/pkcs11/P11Cipher;
            0    1     1  mode  Ljava/lang/String;
    Exceptions:
      throws java.security.NoSuchAlgorithmException
    MethodParameters:
      Name  Flags
      mode  

  private int parseMode(java.lang.String);
    descriptor: (Ljava/lang/String;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // java.lang.String mode
         0: .line 218
            aload 1 /* mode */
            getstatic java.util.Locale.ENGLISH:Ljava/util/Locale;
            invokevirtual java.lang.String.toUpperCase:(Ljava/util/Locale;)Ljava/lang/String;
            astore 1 /* mode */
         1: .line 220
            aload 1 /* mode */
            ldc "ECB"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
         2: .line 221
            iconst_3
            istore 2 /* result */
        start local 2 // int result
         3: .line 222
            goto 15
        end local 2 // int result
      StackMap locals:
      StackMap stack:
         4: aload 1 /* mode */
            ldc "CBC"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 11
         5: .line 223
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockSize:I
            ifne 9
         6: .line 224
            new java.security.NoSuchAlgorithmException
            dup
         7: .line 225
            ldc "CBC mode not supported with stream ciphers"
         8: .line 224
            invokespecial java.security.NoSuchAlgorithmException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 227
      StackMap locals:
      StackMap stack:
            iconst_4
            istore 2 /* result */
        start local 2 // int result
        10: .line 228
            goto 15
        end local 2 // int result
      StackMap locals:
      StackMap stack:
        11: aload 1 /* mode */
            ldc "CTR"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 14
        12: .line 229
            iconst_5
            istore 2 /* result */
        start local 2 // int result
        13: .line 230
            goto 15
        end local 2 // int result
        14: .line 231
      StackMap locals:
      StackMap stack:
            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
        start local 2 // int result
        15: .line 233
      StackMap locals: int
      StackMap stack:
            iload 2 /* result */
            ireturn
        end local 2 // int result
        end local 1 // java.lang.String mode
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     0    this  Lsun/security/pkcs11/P11Cipher;
            0   16     1    mode  Ljava/lang/String;
            3    4     2  result  I
           10   11     2  result  I
           13   14     2  result  I
           15   16     2  result  I
    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=2, args_size=2
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // java.lang.String padding
         0: .line 239
            aload 0 /* this */
            aconst_null
            putfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
         1: .line 240
            aload 0 /* this */
            aconst_null
            putfield sun.security.pkcs11.P11Cipher.padBuffer:[B
         2: .line 241
            aload 1 /* padding */
            getstatic java.util.Locale.ENGLISH:Ljava/util/Locale;
            invokevirtual java.lang.String.toUpperCase:(Ljava/util/Locale;)Ljava/lang/String;
            astore 1 /* padding */
         3: .line 242
            aload 1 /* padding */
            ldc "NOPADDING"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 6
         4: .line 243
            aload 0 /* this */
            iconst_5
            putfield sun.security.pkcs11.P11Cipher.paddingType:I
         5: .line 244
            goto 18
      StackMap locals:
      StackMap stack:
         6: aload 1 /* padding */
            ldc "PKCS5PADDING"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 17
         7: .line 245
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockMode:I
            iconst_5
            if_icmpne 11
         8: .line 246
            new javax.crypto.NoSuchPaddingException
            dup
         9: .line 247
            ldc "PKCS#5 padding not supported with CTR mode"
        10: .line 246
            invokespecial javax.crypto.NoSuchPaddingException.<init>:(Ljava/lang/String;)V
            athrow
        11: .line 249
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 6
            putfield sun.security.pkcs11.P11Cipher.paddingType:I
        12: .line 250
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.mechanism:J
            ldc 293
            lcmp
            ifeq 18
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.mechanism:J
            ldc 310
            lcmp
            ifeq 18
        13: .line 251
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.mechanism:J
            ldc 4229
            lcmp
            ifeq 18
        14: .line 253
            aload 0 /* this */
            new sun.security.pkcs11.P11Cipher$PKCS5Padding
            dup
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockSize:I
            invokespecial sun.security.pkcs11.P11Cipher$PKCS5Padding.<init>:(I)V
            putfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
        15: .line 254
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockSize:I
            newarray 8
            putfield sun.security.pkcs11.P11Cipher.padBuffer:[B
        16: .line 256
            goto 18
        17: .line 257
      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
        18: .line 259
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String padding
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   19     0     this  Lsun/security/pkcs11/P11Cipher;
            0   19     1  padding  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.P11Cipher this
         0: .line 263
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockSize:I
            ireturn
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/pkcs11/P11Cipher;

  protected int engineGetOutputSize(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // int inputLen
         0: .line 268
            aload 0 /* this */
            iload 1 /* inputLen */
            invokevirtual sun.security.pkcs11.P11Cipher.doFinalLength:(I)I
            ireturn
        end local 1 // int inputLen
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lsun/security/pkcs11/P11Cipher;
            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.P11Cipher this
         0: .line 273
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.iv:[B
            ifnonnull 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.iv:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
      StackMap locals:
      StackMap stack: byte[]
         2: areturn
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/security/pkcs11/P11Cipher;

  protected java.security.AlgorithmParameters engineGetParameters();
    descriptor: ()Ljava/security/AlgorithmParameters;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // sun.security.pkcs11.P11Cipher this
         0: .line 278
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.iv:[B
            ifnonnull 2
         1: .line 279
            aconst_null
            areturn
         2: .line 281
      StackMap locals:
      StackMap stack:
            new javax.crypto.spec.IvParameterSpec
            dup
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.iv:[B
            invokespecial javax.crypto.spec.IvParameterSpec.<init>:([B)V
            astore 1 /* ivSpec */
        start local 1 // javax.crypto.spec.IvParameterSpec ivSpec
         3: .line 284
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.keyAlgorithm:Ljava/lang/String;
         4: .line 285
            invokestatic sun.security.pkcs11.P11Util.getSunJceProvider:()Ljava/security/Provider;
         5: .line 284
            invokestatic java.security.AlgorithmParameters.getInstance:(Ljava/lang/String;Ljava/security/Provider;)Ljava/security/AlgorithmParameters;
         6: .line 283
            astore 2 /* params */
        start local 2 // java.security.AlgorithmParameters params
         7: .line 286
            aload 2 /* params */
            aload 1 /* ivSpec */
            invokevirtual java.security.AlgorithmParameters.init:(Ljava/security/spec/AlgorithmParameterSpec;)V
         8: .line 287
            aload 2 /* params */
         9: areturn
        end local 2 // java.security.AlgorithmParameters params
        10: .line 288
      StackMap locals: sun.security.pkcs11.P11Cipher javax.crypto.spec.IvParameterSpec
      StackMap stack: java.security.GeneralSecurityException
            astore 2 /* e */
        start local 2 // java.security.GeneralSecurityException e
        11: .line 291
            new java.security.ProviderException
            dup
            ldc "Could not encode parameters"
            aload 2 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.security.GeneralSecurityException e
        end local 1 // javax.crypto.spec.IvParameterSpec ivSpec
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lsun/security/pkcs11/P11Cipher;
            3   12     1  ivSpec  Ljavax/crypto/spec/IvParameterSpec;
            7   10     2  params  Ljava/security/AlgorithmParameters;
           11   12     2       e  Ljava/security/GeneralSecurityException;
      Exception table:
        from    to  target  type
           3     9      10  Class java.security.GeneralSecurityException

  protected void engineInit(int, java.security.Key, java.security.SecureRandom);
    descriptor: (ILjava/security/Key;Ljava/security/SecureRandom;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // java.security.SecureRandom random
         0: .line 299
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            aconst_null
            aload 3 /* random */
            invokevirtual sun.security.pkcs11.P11Cipher.implInit:(ILjava/security/Key;[BLjava/security/SecureRandom;)V
         1: .line 300
            goto 4
      StackMap locals:
      StackMap stack: java.security.InvalidAlgorithmParameterException
         2: astore 4 /* e */
        start local 4 // java.security.InvalidAlgorithmParameterException e
         3: .line 301
            new java.security.InvalidKeyException
            dup
            ldc "init() failed"
            aload 4 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 4 // java.security.InvalidAlgorithmParameterException e
         4: .line 303
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.security.SecureRandom random
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lsun/security/pkcs11/P11Cipher;
            0    5     1  opmode  I
            0    5     2     key  Ljava/security/Key;
            0    5     3  random  Ljava/security/SecureRandom;
            3    4     4       e  Ljava/security/InvalidAlgorithmParameterException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.security.InvalidAlgorithmParameterException
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      random  

  protected void engineInit(int, java.security.Key, java.security.spec.AlgorithmParameterSpec, java.security.SecureRandom);
    descriptor: (ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=7, args_size=5
        start local 0 // sun.security.pkcs11.P11Cipher 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 310
            aload 3 /* params */
            ifnull 8
         1: .line 311
            aload 3 /* params */
            instanceof javax.crypto.spec.IvParameterSpec
            ifne 5
         2: .line 312
            new java.security.InvalidAlgorithmParameterException
            dup
         3: .line 313
            ldc "Only IvParameterSpec supported"
         4: .line 312
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 315
      StackMap locals:
      StackMap stack:
            aload 3 /* params */
            checkcast javax.crypto.spec.IvParameterSpec
            astore 6 /* ivSpec */
        start local 6 // javax.crypto.spec.IvParameterSpec ivSpec
         6: .line 316
            aload 6 /* ivSpec */
            invokevirtual javax.crypto.spec.IvParameterSpec.getIV:()[B
            astore 5 /* ivValue */
        end local 6 // javax.crypto.spec.IvParameterSpec ivSpec
        start local 5 // byte[] ivValue
         7: .line 317
            goto 9
        end local 5 // byte[] ivValue
         8: .line 318
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 5 /* ivValue */
        start local 5 // byte[] ivValue
         9: .line 320
      StackMap locals: byte[]
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            aload 5 /* ivValue */
            aload 4 /* random */
            invokevirtual sun.security.pkcs11.P11Cipher.implInit:(ILjava/security/Key;[BLjava/security/SecureRandom;)V
        10: .line 321
            return
        end local 5 // byte[] ivValue
        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.P11Cipher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lsun/security/pkcs11/P11Cipher;
            0   11     1   opmode  I
            0   11     2      key  Ljava/security/Key;
            0   11     3   params  Ljava/security/spec/AlgorithmParameterSpec;
            0   11     4   random  Ljava/security/SecureRandom;
            7    8     5  ivValue  [B
            9   11     5  ivValue  [B
            6    7     6   ivSpec  Ljavax/crypto/spec/IvParameterSpec;
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      params  
      random  

  protected void engineInit(int, java.security.Key, java.security.AlgorithmParameters, java.security.SecureRandom);
    descriptor: (ILjava/security/Key;Ljava/security/AlgorithmParameters;Ljava/security/SecureRandom;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=7, args_size=5
        start local 0 // sun.security.pkcs11.P11Cipher 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 328
            aload 3 /* params */
            ifnull 9
         1: .line 331
            aload 3 /* params */
            ldc Ljavax/crypto/spec/IvParameterSpec;
            invokevirtual java.security.AlgorithmParameters.getParameterSpec:(Ljava/lang/Class;)Ljava/security/spec/AlgorithmParameterSpec;
            checkcast javax.crypto.spec.IvParameterSpec
         2: .line 330
            astore 6 /* ivSpec */
        start local 6 // javax.crypto.spec.IvParameterSpec ivSpec
         3: .line 332
            aload 6 /* ivSpec */
            invokevirtual javax.crypto.spec.IvParameterSpec.getIV:()[B
            astore 5 /* ivValue */
        end local 6 // javax.crypto.spec.IvParameterSpec ivSpec
        start local 5 // byte[] ivValue
         4: .line 333
            goto 10
        end local 5 // byte[] ivValue
      StackMap locals:
      StackMap stack: java.security.spec.InvalidParameterSpecException
         5: astore 6 /* e */
        start local 6 // java.security.spec.InvalidParameterSpecException e
         6: .line 334
            new java.security.InvalidAlgorithmParameterException
            dup
         7: .line 335
            ldc "Could not decode IV"
            aload 6 /* e */
         8: .line 334
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 6 // java.security.spec.InvalidParameterSpecException e
         9: .line 338
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 5 /* ivValue */
        start local 5 // byte[] ivValue
        10: .line 340
      StackMap locals: byte[]
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            aload 5 /* ivValue */
            aload 4 /* random */
            invokevirtual sun.security.pkcs11.P11Cipher.implInit:(ILjava/security/Key;[BLjava/security/SecureRandom;)V
        11: .line 341
            return
        end local 5 // byte[] ivValue
        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.P11Cipher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Lsun/security/pkcs11/P11Cipher;
            0   12     1   opmode  I
            0   12     2      key  Ljava/security/Key;
            0   12     3   params  Ljava/security/AlgorithmParameters;
            0   12     4   random  Ljava/security/SecureRandom;
            4    5     5  ivValue  [B
           10   12     5  ivValue  [B
            3    4     6   ivSpec  Ljavax/crypto/spec/IvParameterSpec;
            6    9     6        e  Ljava/security/spec/InvalidParameterSpecException;
      Exception table:
        from    to  target  type
           1     4       5  Class java.security.spec.InvalidParameterSpecException
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      params  
      random  

  private void implInit(int, java.security.Key, byte[], java.security.SecureRandom);
    descriptor: (ILjava/security/Key;[BLjava/security/SecureRandom;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=5
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // byte[] iv
        start local 4 // java.security.SecureRandom random
         0: .line 347
            aload 0 /* this */
            iconst_1
            invokevirtual sun.security.pkcs11.P11Cipher.reset:(Z)V
         1: .line 348
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.fixedKeySize:I
            iconst_m1
            if_icmpeq 3
            aload 2 /* key */
            invokeinterface java.security.Key.getEncoded:()[B
            arraylength
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.fixedKeySize:I
            if_icmpeq 3
         2: .line 349
            new java.security.InvalidKeyException
            dup
            ldc "Key size is invalid"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 351
      StackMap locals:
      StackMap stack:
            iload 1 /* opmode */
            tableswitch { // 1 - 2
                    1: 4
                    2: 6
              default: 8
          }
         4: .line 353
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11Cipher.encrypt:Z
         5: .line 354
            goto 11
         6: .line 356
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.encrypt:Z
         7: .line 357
            goto 11
         8: .line 359
      StackMap locals:
      StackMap stack:
            new java.security.InvalidAlgorithmParameterException
            dup
         9: .line 360
            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;
        10: .line 359
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        11: .line 362
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockMode:I
            iconst_3
            if_icmpne 20
        12: .line 363
            aload 3 /* iv */
            ifnull 36
        13: .line 364
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockSize:I
            ifne 17
        14: .line 365
            new java.security.InvalidAlgorithmParameterException
            dup
        15: .line 366
            ldc "IV not used with stream ciphers"
        16: .line 365
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        17: .line 368
      StackMap locals:
      StackMap stack:
            new java.security.InvalidAlgorithmParameterException
            dup
        18: .line 369
            ldc "IV not used in ECB mode"
        19: .line 368
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 373
      StackMap locals:
      StackMap stack:
            aload 3 /* iv */
            ifnonnull 32
        21: .line 374
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.encrypt:Z
            ifne 27
        22: .line 376
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockMode:I
            iconst_4
            if_icmpne 24
        23: .line 377
            ldc "IV must be specified for decryption in CBC mode"
            goto 25
        24: .line 378
      StackMap locals:
      StackMap stack:
            ldc "IV must be specified for decryption in CTR mode"
        25: .line 375
      StackMap locals:
      StackMap stack: java.lang.String
            astore 5 /* exMsg */
        start local 5 // java.lang.String exMsg
        26: .line 379
            new java.security.InvalidAlgorithmParameterException
            dup
            aload 5 /* exMsg */
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        end local 5 // java.lang.String exMsg
        27: .line 382
      StackMap locals:
      StackMap stack:
            aload 4 /* random */
            ifnonnull 29
        28: .line 383
            invokestatic sun.security.jca.JCAUtil.getSecureRandom:()Ljava/security/SecureRandom;
            astore 4 /* random */
        29: .line 385
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockSize:I
            newarray 8
            astore 3 /* iv */
        30: .line 386
            aload 4 /* random */
            aload 3 /* iv */
            invokevirtual java.security.SecureRandom.nextBytes:([B)V
        31: .line 387
            goto 36
        32: .line 388
      StackMap locals:
      StackMap stack:
            aload 3 /* iv */
            arraylength
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockSize:I
            if_icmpeq 36
        33: .line 389
            new java.security.InvalidAlgorithmParameterException
            dup
        34: .line 390
            ldc "IV length must match block size"
        35: .line 389
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        36: .line 394
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* iv */
            putfield sun.security.pkcs11.P11Cipher.iv:[B
        37: .line 395
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            aload 2 /* key */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.keyAlgorithm:Ljava/lang/String;
            invokestatic sun.security.pkcs11.P11SecretKeyFactory.convertKey:(Lsun/security/pkcs11/Token;Ljava/security/Key;Ljava/lang/String;)Lsun/security/pkcs11/P11Key;
            putfield sun.security.pkcs11.P11Cipher.p11Key:Lsun/security/pkcs11/P11Key;
        38: .line 397
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Cipher.initialize:()V
        39: .line 398
            goto 42
      StackMap locals:
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
        40: astore 5 /* e */
        start local 5 // sun.security.pkcs11.wrapper.PKCS11Exception e
        41: .line 399
            new java.security.InvalidKeyException
            dup
            ldc "Could not initialize cipher"
            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
        42: .line 401
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.security.SecureRandom random
        end local 3 // byte[] iv
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   43     0    this  Lsun/security/pkcs11/P11Cipher;
            0   43     1  opmode  I
            0   43     2     key  Ljava/security/Key;
            0   43     3      iv  [B
            0   43     4  random  Ljava/security/SecureRandom;
           26   27     5   exMsg  Ljava/lang/String;
           41   42     5       e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
          38    39      40  Class sun.security.pkcs11.wrapper.PKCS11Exception
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      iv      
      random  

  private void cancelOperation();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=3, args_size=1
        start local 0 // sun.security.pkcs11.P11Cipher this
         0: .line 404
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.initialized:Z
            ifne 2
         1: .line 405
            return
         2: .line 408
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            ifnull 3
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.explicitCancel:Z
            ifne 4
         3: .line 409
      StackMap locals:
      StackMap stack:
            return
         4: .line 412
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.hasObjects:()Z
            ifne 7
         5: .line 413
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Token.killSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            putfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
         6: .line 414
            return
         7: .line 417
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual sun.security.pkcs11.P11Cipher.doFinalLength:(I)I
            istore 1 /* bufLen */
        start local 1 // int bufLen
         8: .line 418
            iload 1 /* bufLen */
            newarray 8
            astore 2 /* buffer */
        start local 2 // byte[] buffer
         9: .line 419
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.encrypt:Z
            ifeq 12
        10: .line 420
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lconst_0
            aload 2 /* buffer */
            iconst_0
            iload 1 /* bufLen */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_EncryptFinal:(JJ[BII)I
            pop
        11: .line 421
            goto 16
        12: .line 422
      StackMap locals: int byte[]
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lconst_0
            aload 2 /* buffer */
            iconst_0
            iload 1 /* bufLen */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptFinal:(JJ[BII)I
            pop
        end local 2 // byte[] buffer
        end local 1 // int bufLen
        13: .line 425
            goto 16
      StackMap locals: sun.security.pkcs11.P11Cipher
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
        14: astore 1 /* e */
        start local 1 // sun.security.pkcs11.wrapper.PKCS11Exception e
        15: .line 426
            new java.security.ProviderException
            dup
            ldc "Cancel failed"
            aload 1 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // sun.security.pkcs11.wrapper.PKCS11Exception e
        16: .line 428
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   17     0    this  Lsun/security/pkcs11/P11Cipher;
            8   13     1  bufLen  I
            9   13     2  buffer  [B
           15   16     1       e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           4     6      14  Class sun.security.pkcs11.wrapper.PKCS11Exception
           7    13      14  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.P11Cipher this
         0: .line 431
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.initialized:Z
            ifne 2
         1: .line 432
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Cipher.initialize:()V
         2: .line 434
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/security/pkcs11/P11Cipher;
    Exceptions:
      throws sun.security.pkcs11.wrapper.PKCS11Exception

  private void initialize();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=3, args_size=1
        start local 0 // sun.security.pkcs11.P11Cipher this
         0: .line 437
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            ifnonnull 2
         1: .line 438
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.getOpSession:()Lsun/security/pkcs11/Session;
            putfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
         2: .line 440
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockMode:I
            iconst_5
            if_icmpne 4
         3: .line 441
            new sun.security.pkcs11.wrapper.CK_MECHANISM
            dup
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.mechanism:J
            new sun.security.pkcs11.wrapper.CK_AES_CTR_PARAMS
            dup
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.iv:[B
            invokespecial sun.security.pkcs11.wrapper.CK_AES_CTR_PARAMS.<init>:([B)V
            invokespecial sun.security.pkcs11.wrapper.CK_MECHANISM.<init>:(JLsun/security/pkcs11/wrapper/CK_AES_CTR_PARAMS;)V
            goto 5
         4: .line 442
      StackMap locals:
      StackMap stack:
            new sun.security.pkcs11.wrapper.CK_MECHANISM
            dup
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.mechanism:J
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.iv:[B
            invokespecial sun.security.pkcs11.wrapper.CK_MECHANISM.<init>:(J[B)V
         5: .line 440
      StackMap locals:
      StackMap stack: sun.security.pkcs11.wrapper.CK_MECHANISM
            astore 1 /* mechParams */
        start local 1 // sun.security.pkcs11.wrapper.CK_MECHANISM mechParams
         6: .line 445
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.encrypt:Z
            ifeq 9
         7: .line 446
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            aload 1 /* mechParams */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.p11Key:Lsun/security/pkcs11/P11Key;
            getfield sun.security.pkcs11.P11Key.keyID:J
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_EncryptInit:(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J)V
         8: .line 447
            goto 14
         9: .line 448
      StackMap locals: sun.security.pkcs11.wrapper.CK_MECHANISM
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            aload 1 /* mechParams */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.p11Key:Lsun/security/pkcs11/P11Key;
            getfield sun.security.pkcs11.P11Key.keyID:J
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptInit:(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J)V
        10: .line 450
            goto 14
      StackMap locals:
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
        11: astore 2 /* ex */
        start local 2 // sun.security.pkcs11.wrapper.PKCS11Exception ex
        12: .line 452
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            putfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
        13: .line 453
            aload 2 /* ex */
            athrow
        end local 2 // sun.security.pkcs11.wrapper.PKCS11Exception ex
        14: .line 455
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
        15: .line 456
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.padBufferLen:I
        16: .line 457
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11Cipher.initialized:Z
        17: .line 458
            return
        end local 1 // sun.security.pkcs11.wrapper.CK_MECHANISM mechParams
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   18     0        this  Lsun/security/pkcs11/P11Cipher;
            6   18     1  mechParams  Lsun/security/pkcs11/wrapper/CK_MECHANISM;
           12   14     2          ex  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           6    10      11  Class sun.security.pkcs11.wrapper.PKCS11Exception
    Exceptions:
      throws sun.security.pkcs11.wrapper.PKCS11Exception

  private int updateLength(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // int inLen
         0: .line 462
            iload 1 /* inLen */
            ifgt 2
         1: .line 463
            iconst_0
            ireturn
         2: .line 466
      StackMap locals:
      StackMap stack:
            iload 1 /* inLen */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
            iadd
            istore 2 /* result */
        start local 2 // int result
         3: .line 467
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockSize:I
            ifeq 5
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockMode:I
            iconst_5
            if_icmpeq 5
         4: .line 469
            iload 2 /* result */
            iload 2 /* result */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockSize:I
            iconst_1
            isub
            iand
            isub
            istore 2 /* result */
         5: .line 471
      StackMap locals: int
      StackMap stack:
            iload 2 /* result */
            ireturn
        end local 2 // int result
        end local 1 // int inLen
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lsun/security/pkcs11/P11Cipher;
            0    6     1   inLen  I
            3    6     2  result  I
    MethodParameters:
       Name  Flags
      inLen  

  private int doFinalLength(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // int inLen
         0: .line 476
            iload 1 /* inLen */
            ifge 2
         1: .line 477
            iconst_0
            ireturn
         2: .line 480
      StackMap locals:
      StackMap stack:
            iload 1 /* inLen */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
            iadd
            istore 2 /* result */
        start local 2 // int result
         3: .line 481
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockSize:I
            ifeq 5
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.encrypt:Z
            ifeq 5
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingType:I
            iconst_5
            if_icmpeq 5
         4: .line 483
            iload 2 /* result */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockSize:I
            iload 2 /* result */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockSize:I
            iconst_1
            isub
            iand
            isub
            iadd
            istore 2 /* result */
         5: .line 485
      StackMap locals: int
      StackMap stack:
            iload 2 /* result */
            ireturn
        end local 2 // int result
        end local 1 // int inLen
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lsun/security/pkcs11/P11Cipher;
            0    6     1   inLen  I
            3    6     2  result  I
    MethodParameters:
       Name  Flags
      inLen  

  private void reset(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // boolean doCancel
         0: .line 490
            iload 1 /* doCancel */
            ifeq 1
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Cipher.cancelOperation:()V
         1: .line 492
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.initialized:Z
         2: .line 493
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
         3: .line 494
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.padBufferLen:I
         4: .line 495
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            ifnull 6
         5: .line 496
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            putfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
         6: .line 498
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean doCancel
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lsun/security/pkcs11/P11Cipher;
            0    7     1  doCancel  Z
    MethodParameters:
          Name  Flags
      doCancel  

  protected byte[] engineUpdate(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=6, args_size=4
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
         0: .line 503
            aload 0 /* this */
            iload 3 /* inLen */
            invokevirtual sun.security.pkcs11.P11Cipher.updateLength:(I)I
            newarray 8
            astore 4 /* out */
        start local 4 // byte[] out
         1: .line 504
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            aload 4 /* out */
            iconst_0
            invokevirtual sun.security.pkcs11.P11Cipher.engineUpdate:([BII[BI)I
            istore 5 /* n */
        start local 5 // int n
         2: .line 505
            aload 4 /* out */
            iconst_0
            iload 5 /* n */
            invokestatic sun.security.pkcs11.P11Util.convert:([BII)[B
         3: areturn
        end local 5 // int n
        end local 4 // byte[] out
         4: .line 506
      StackMap locals:
      StackMap stack: javax.crypto.ShortBufferException
            astore 4 /* e */
        start local 4 // javax.crypto.ShortBufferException e
         5: .line 508
            new java.security.ProviderException
            dup
            aload 4 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 4 // javax.crypto.ShortBufferException e
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lsun/security/pkcs11/P11Cipher;
            0    6     1     in  [B
            0    6     2  inOfs  I
            0    6     3  inLen  I
            1    4     4    out  [B
            2    4     5      n  I
            5    6     4      e  Ljavax/crypto/ShortBufferException;
      Exception table:
        from    to  target  type
           0     3       4  Class javax.crypto.ShortBufferException
    MethodParameters:
       Name  Flags
      in     
      inOfs  
      inLen  

  protected int engineUpdate(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=7, args_size=6
        start local 0 // sun.security.pkcs11.P11Cipher 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 515
            aload 4 /* out */
            arraylength
            iload 5 /* outOfs */
            isub
            istore 6 /* outLen */
        start local 6 // int outLen
         1: .line 516
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            aload 4 /* out */
            iload 5 /* outOfs */
            iload 6 /* outLen */
            invokevirtual sun.security.pkcs11.P11Cipher.implUpdate:([BII[BII)I
            ireturn
        end local 6 // int outLen
        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.P11Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lsun/security/pkcs11/P11Cipher;
            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
            1    2     6  outLen  I
    Exceptions:
      throws javax.crypto.ShortBufferException
    MethodParameters:
        Name  Flags
      in      
      inOfs   
      inLen   
      out     
      outOfs  

  protected int engineUpdate(java.nio.ByteBuffer, java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // java.nio.ByteBuffer inBuffer
        start local 2 // java.nio.ByteBuffer outBuffer
         0: .line 523
            aload 0 /* this */
            aload 1 /* inBuffer */
            aload 2 /* outBuffer */
            invokevirtual sun.security.pkcs11.P11Cipher.implUpdate:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
            ireturn
        end local 2 // java.nio.ByteBuffer outBuffer
        end local 1 // java.nio.ByteBuffer inBuffer
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lsun/security/pkcs11/P11Cipher;
            0    1     1   inBuffer  Ljava/nio/ByteBuffer;
            0    1     2  outBuffer  Ljava/nio/ByteBuffer;
    Exceptions:
      throws javax.crypto.ShortBufferException
    MethodParameters:
           Name  Flags
      inBuffer   
      outBuffer  

  protected byte[] engineDoFinal(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=6, args_size=4
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
         0: .line 530
            aload 0 /* this */
            iload 3 /* inLen */
            invokevirtual sun.security.pkcs11.P11Cipher.doFinalLength:(I)I
            newarray 8
            astore 4 /* out */
        start local 4 // byte[] out
         1: .line 531
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            aload 4 /* out */
            iconst_0
            invokevirtual sun.security.pkcs11.P11Cipher.engineDoFinal:([BII[BI)I
            istore 5 /* n */
        start local 5 // int n
         2: .line 532
            aload 4 /* out */
            iconst_0
            iload 5 /* n */
            invokestatic sun.security.pkcs11.P11Util.convert:([BII)[B
         3: areturn
        end local 5 // int n
        end local 4 // byte[] out
         4: .line 533
      StackMap locals:
      StackMap stack: javax.crypto.ShortBufferException
            astore 4 /* e */
        start local 4 // javax.crypto.ShortBufferException e
         5: .line 535
            new java.security.ProviderException
            dup
            aload 4 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 4 // javax.crypto.ShortBufferException e
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lsun/security/pkcs11/P11Cipher;
            0    6     1     in  [B
            0    6     2  inOfs  I
            0    6     3  inLen  I
            1    4     4    out  [B
            2    4     5      n  I
            5    6     4      e  Ljavax/crypto/ShortBufferException;
      Exception table:
        from    to  target  type
           0     3       4  Class javax.crypto.ShortBufferException
    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=6, locals=7, args_size=6
        start local 0 // sun.security.pkcs11.P11Cipher 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 543
            iconst_0
            istore 6 /* n */
        start local 6 // int n
         1: .line 544
            iload 3 /* inLen */
            ifeq 4
            aload 1 /* in */
            ifnull 4
         2: .line 545
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            aload 4 /* out */
            iload 5 /* outOfs */
            invokevirtual sun.security.pkcs11.P11Cipher.engineUpdate:([BII[BI)I
            istore 6 /* n */
         3: .line 546
            iload 5 /* outOfs */
            iload 6 /* n */
            iadd
            istore 5 /* outOfs */
         4: .line 548
      StackMap locals: int
      StackMap stack:
            iload 6 /* n */
            aload 0 /* this */
            aload 4 /* out */
            iload 5 /* outOfs */
            aload 4 /* out */
            arraylength
            iload 5 /* outOfs */
            isub
            invokevirtual sun.security.pkcs11.P11Cipher.implDoFinal:([BII)I
            iadd
            istore 6 /* n */
         5: .line 549
            iload 6 /* n */
            ireturn
        end local 6 // int n
        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.P11Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lsun/security/pkcs11/P11Cipher;
            0    6     1      in  [B
            0    6     2   inOfs  I
            0    6     3   inLen  I
            0    6     4     out  [B
            0    6     5  outOfs  I
            1    6     6       n  I
    Exceptions:
      throws javax.crypto.ShortBufferException, javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    MethodParameters:
        Name  Flags
      in      
      inOfs   
      inLen   
      out     
      outOfs  

  protected int engineDoFinal(java.nio.ByteBuffer, java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // java.nio.ByteBuffer inBuffer
        start local 2 // java.nio.ByteBuffer outBuffer
         0: .line 557
            aload 0 /* this */
            aload 1 /* inBuffer */
            aload 2 /* outBuffer */
            invokevirtual sun.security.pkcs11.P11Cipher.engineUpdate:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
            istore 3 /* n */
        start local 3 // int n
         1: .line 558
            iload 3 /* n */
            aload 0 /* this */
            aload 2 /* outBuffer */
            invokevirtual sun.security.pkcs11.P11Cipher.implDoFinal:(Ljava/nio/ByteBuffer;)I
            iadd
            istore 3 /* n */
         2: .line 559
            iload 3 /* n */
            ireturn
        end local 3 // int n
        end local 2 // java.nio.ByteBuffer outBuffer
        end local 1 // java.nio.ByteBuffer inBuffer
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lsun/security/pkcs11/P11Cipher;
            0    3     1   inBuffer  Ljava/nio/ByteBuffer;
            0    3     2  outBuffer  Ljava/nio/ByteBuffer;
            1    3     3          n  I
    Exceptions:
      throws javax.crypto.ShortBufferException, javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    MethodParameters:
           Name  Flags
      inBuffer   
      outBuffer  

  private int implUpdate(byte[], int, int, byte[], int, int);
    descriptor: ([BII[BII)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=15, locals=10, args_size=7
        start local 0 // sun.security.pkcs11.P11Cipher 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
        start local 6 // int outLen
         0: .line 564
            iload 6 /* outLen */
            aload 0 /* this */
            iload 3 /* inLen */
            invokevirtual sun.security.pkcs11.P11Cipher.updateLength:(I)I
            if_icmpge 2
         1: .line 565
            new javax.crypto.ShortBufferException
            dup
            invokespecial javax.crypto.ShortBufferException.<init>:()V
            athrow
         2: .line 568
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Cipher.ensureInitialized:()V
         3: .line 569
            iconst_0
            istore 7 /* k */
        start local 7 // int k
         4: .line 570
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.encrypt:Z
            ifeq 9
         5: .line 571
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lconst_0
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
         6: .line 572
            lconst_0
            aload 4 /* out */
            iload 5 /* outOfs */
            iload 6 /* outLen */
         7: .line 571
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_EncryptUpdate:(JJ[BIIJ[BII)I
            istore 7 /* k */
         8: .line 573
            goto 36
         9: .line 574
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 8 /* newPadBufferLen */
        start local 8 // int newPadBufferLen
        10: .line 575
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            ifnull 30
        11: .line 576
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            ifeq 26
        12: .line 580
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            arraylength
            if_icmpeq 21
        13: .line 581
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            arraylength
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            isub
            istore 9 /* bufCapacity */
        start local 9 // int bufCapacity
        14: .line 582
            iload 3 /* inLen */
            iload 9 /* bufCapacity */
            if_icmple 19
        15: .line 583
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 9 /* bufCapacity */
            invokevirtual sun.security.pkcs11.P11Cipher.bufferInputBytes:([BII)V
        16: .line 584
            iload 2 /* inOfs */
            iload 9 /* bufCapacity */
            iadd
            istore 2 /* inOfs */
        17: .line 585
            iload 3 /* inLen */
            iload 9 /* bufCapacity */
            isub
            istore 3 /* inLen */
        18: .line 586
            goto 21
        19: .line 587
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            invokevirtual sun.security.pkcs11.P11Cipher.bufferInputBytes:([BII)V
        20: .line 588
            iconst_0
            ireturn
        end local 9 // int bufCapacity
        21: .line 591
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
        22: .line 592
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            iconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
        23: .line 593
            lconst_0
            aload 4 /* out */
            iload 5 /* outOfs */
            iload 6 /* outLen */
        24: .line 591
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptUpdate:(JJ[BIIJ[BII)I
            istore 7 /* k */
        25: .line 594
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.padBufferLen:I
        26: .line 596
      StackMap locals:
      StackMap stack:
            iload 3 /* inLen */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockSize:I
            iconst_1
            isub
            iand
            istore 8 /* newPadBufferLen */
        27: .line 597
            iload 8 /* newPadBufferLen */
            ifne 29
        28: .line 598
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            arraylength
            istore 8 /* newPadBufferLen */
        29: .line 600
      StackMap locals:
      StackMap stack:
            iload 3 /* inLen */
            iload 8 /* newPadBufferLen */
            isub
            istore 3 /* inLen */
        30: .line 602
      StackMap locals:
      StackMap stack:
            iload 3 /* inLen */
            ifle 34
        31: .line 603
            iload 7 /* k */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lconst_0
            aload 1 /* in */
            iload 2 /* inOfs */
        32: .line 604
            iload 3 /* inLen */
            lconst_0
            aload 4 /* out */
            iload 5 /* outOfs */
            iload 7 /* k */
            iadd
            iload 6 /* outLen */
            iload 7 /* k */
            isub
        33: .line 603
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptUpdate:(JJ[BIIJ[BII)I
            iadd
            istore 7 /* k */
        34: .line 607
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            ifnull 36
        35: .line 608
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            iadd
            iload 8 /* newPadBufferLen */
            invokevirtual sun.security.pkcs11.P11Cipher.bufferInputBytes:([BII)V
        end local 8 // int newPadBufferLen
        36: .line 611
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
            iload 3 /* inLen */
            iload 7 /* k */
            isub
            iadd
            putfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
        37: .line 612
            iload 7 /* k */
        38: ireturn
        end local 7 // int k
        39: .line 613
      StackMap locals: sun.security.pkcs11.P11Cipher byte[] int int byte[] int int
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
            astore 7 /* e */
        start local 7 // sun.security.pkcs11.wrapper.PKCS11Exception e
        40: .line 614
            aload 7 /* e */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11Exception.getErrorCode:()J
            ldc 336
            lcmp
            ifne 43
        41: .line 616
            new javax.crypto.ShortBufferException
            dup
            invokespecial javax.crypto.ShortBufferException.<init>:()V
            aload 7 /* e */
            invokevirtual javax.crypto.ShortBufferException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
        42: .line 615
            checkcast javax.crypto.ShortBufferException
            athrow
        43: .line 618
      StackMap locals: sun.security.pkcs11.wrapper.PKCS11Exception
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual sun.security.pkcs11.P11Cipher.reset:(Z)V
        44: .line 619
            new java.security.ProviderException
            dup
            ldc "update() failed"
            aload 7 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 7 // sun.security.pkcs11.wrapper.PKCS11Exception e
        end local 6 // int outLen
        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.P11Cipher this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   45     0             this  Lsun/security/pkcs11/P11Cipher;
            0   45     1               in  [B
            0   45     2            inOfs  I
            0   45     3            inLen  I
            0   45     4              out  [B
            0   45     5           outOfs  I
            0   45     6           outLen  I
            4   39     7                k  I
           10   36     8  newPadBufferLen  I
           14   21     9      bufCapacity  I
           40   45     7                e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           2    20      39  Class sun.security.pkcs11.wrapper.PKCS11Exception
          21    38      39  Class sun.security.pkcs11.wrapper.PKCS11Exception
    Exceptions:
      throws javax.crypto.ShortBufferException
    MethodParameters:
        Name  Flags
      in      
      inOfs   
      inLen   
      out     
      outOfs  
      outLen  

  private int implUpdate(java.nio.ByteBuffer, java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=15, locals=17, args_size=3
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // java.nio.ByteBuffer inBuffer
        start local 2 // java.nio.ByteBuffer outBuffer
         0: .line 625
            aload 1 /* inBuffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 3 /* inLen */
        start local 3 // int inLen
         1: .line 626
            iload 3 /* inLen */
            ifgt 3
         2: .line 627
            iconst_0
            ireturn
         3: .line 630
      StackMap locals: int
      StackMap stack:
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 4 /* outLen */
        start local 4 // int outLen
         4: .line 631
            iload 4 /* outLen */
            aload 0 /* this */
            iload 3 /* inLen */
            invokevirtual sun.security.pkcs11.P11Cipher.updateLength:(I)I
            if_icmpge 6
         5: .line 632
            new javax.crypto.ShortBufferException
            dup
            invokespecial javax.crypto.ShortBufferException.<init>:()V
            athrow
         6: .line 634
      StackMap locals: int
      StackMap stack:
            aload 1 /* inBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 5 /* origPos */
        start local 5 // int origPos
         7: .line 636
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Cipher.ensureInitialized:()V
         8: .line 638
            lconst_0
            lstore 6 /* inAddr */
        start local 6 // long inAddr
         9: .line 639
            iconst_0
            istore 8 /* inOfs */
        start local 8 // int inOfs
        10: .line 640
            aconst_null
            astore 9 /* inArray */
        start local 9 // byte[] inArray
        11: .line 642
            aload 1 /* inBuffer */
            instanceof sun.nio.ch.DirectBuffer
            ifeq 15
        12: .line 643
            aload 1 /* inBuffer */
            checkcast sun.nio.ch.DirectBuffer
            invokeinterface sun.nio.ch.DirectBuffer.address:()J
            lstore 6 /* inAddr */
        13: .line 644
            iload 5 /* origPos */
            istore 8 /* inOfs */
        14: .line 645
            goto 18
      StackMap locals: sun.security.pkcs11.P11Cipher java.nio.ByteBuffer java.nio.ByteBuffer int int int long int byte[]
      StackMap stack:
        15: aload 1 /* inBuffer */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifeq 18
        16: .line 646
            aload 1 /* inBuffer */
            invokevirtual java.nio.ByteBuffer.array:()[B
            astore 9 /* inArray */
        17: .line 647
            iload 5 /* origPos */
            aload 1 /* inBuffer */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            iadd
            istore 8 /* inOfs */
        18: .line 650
      StackMap locals:
      StackMap stack:
            lconst_0
            lstore 10 /* outAddr */
        start local 10 // long outAddr
        19: .line 651
            iconst_0
            istore 12 /* outOfs */
        start local 12 // int outOfs
        20: .line 652
            aconst_null
            astore 13 /* outArray */
        start local 13 // byte[] outArray
        21: .line 653
            aload 2 /* outBuffer */
            instanceof sun.nio.ch.DirectBuffer
            ifeq 25
        22: .line 654
            aload 2 /* outBuffer */
            checkcast sun.nio.ch.DirectBuffer
            invokeinterface sun.nio.ch.DirectBuffer.address:()J
            lstore 10 /* outAddr */
        23: .line 655
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 12 /* outOfs */
        24: .line 656
            goto 30
        25: .line 657
      StackMap locals: long int byte[]
      StackMap stack:
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifeq 29
        26: .line 658
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.array:()[B
            astore 13 /* outArray */
        27: .line 659
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            iadd
            istore 12 /* outOfs */
        28: .line 660
            goto 30
        29: .line 661
      StackMap locals:
      StackMap stack:
            iload 4 /* outLen */
            newarray 8
            astore 13 /* outArray */
        30: .line 665
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 14 /* k */
        start local 14 // int k
        31: .line 666
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.encrypt:Z
            ifeq 42
        32: .line 667
            lload 6 /* inAddr */
            lconst_0
            lcmp
            ifne 36
            aload 9 /* inArray */
            ifnonnull 36
        33: .line 668
            iload 3 /* inLen */
            newarray 8
            astore 9 /* inArray */
        34: .line 669
            aload 1 /* inBuffer */
            aload 9 /* inArray */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
        35: .line 670
            goto 37
        36: .line 671
      StackMap locals: int
      StackMap stack:
            aload 1 /* inBuffer */
            iload 5 /* origPos */
            iload 3 /* inLen */
            iadd
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        37: .line 673
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
        38: .line 674
            lload 6 /* inAddr */
            aload 9 /* inArray */
            iload 8 /* inOfs */
            iload 3 /* inLen */
        39: .line 675
            lload 10 /* outAddr */
            aload 13 /* outArray */
            iload 12 /* outOfs */
            iload 4 /* outLen */
        40: .line 673
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_EncryptUpdate:(JJ[BIIJ[BII)I
            istore 14 /* k */
        41: .line 676
            goto 75
        42: .line 677
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 15 /* newPadBufferLen */
        start local 15 // int newPadBufferLen
        43: .line 678
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            ifnull 63
        44: .line 679
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            ifeq 59
        45: .line 683
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            arraylength
            if_icmpeq 54
        46: .line 684
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            arraylength
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            isub
            istore 16 /* bufCapacity */
        start local 16 // int bufCapacity
        47: .line 685
            iload 3 /* inLen */
            iload 16 /* bufCapacity */
            if_icmple 52
        48: .line 686
            aload 0 /* this */
            aload 1 /* inBuffer */
            iload 16 /* bufCapacity */
            invokevirtual sun.security.pkcs11.P11Cipher.bufferInputBytes:(Ljava/nio/ByteBuffer;I)V
        49: .line 687
            iload 8 /* inOfs */
            iload 16 /* bufCapacity */
            iadd
            istore 8 /* inOfs */
        50: .line 688
            iload 3 /* inLen */
            iload 16 /* bufCapacity */
            isub
            istore 3 /* inLen */
        51: .line 689
            goto 54
        52: .line 690
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* inBuffer */
            iload 3 /* inLen */
            invokevirtual sun.security.pkcs11.P11Cipher.bufferInputBytes:(Ljava/nio/ByteBuffer;I)V
        53: .line 691
            iconst_0
            ireturn
        end local 16 // int bufCapacity
        54: .line 694
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lconst_0
        55: .line 695
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            iconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            lload 10 /* outAddr */
            aload 13 /* outArray */
        56: .line 696
            iload 12 /* outOfs */
            iload 4 /* outLen */
        57: .line 694
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptUpdate:(JJ[BIIJ[BII)I
            istore 14 /* k */
        58: .line 697
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.padBufferLen:I
        59: .line 699
      StackMap locals:
      StackMap stack:
            iload 3 /* inLen */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockSize:I
            iconst_1
            isub
            iand
            istore 15 /* newPadBufferLen */
        60: .line 700
            iload 15 /* newPadBufferLen */
            ifne 62
        61: .line 701
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            arraylength
            istore 15 /* newPadBufferLen */
        62: .line 703
      StackMap locals:
      StackMap stack:
            iload 3 /* inLen */
            iload 15 /* newPadBufferLen */
            isub
            istore 3 /* inLen */
        63: .line 705
      StackMap locals:
      StackMap stack:
            iload 3 /* inLen */
            ifle 73
        64: .line 706
            lload 6 /* inAddr */
            lconst_0
            lcmp
            ifne 68
            aload 9 /* inArray */
            ifnonnull 68
        65: .line 707
            iload 3 /* inLen */
            newarray 8
            astore 9 /* inArray */
        66: .line 708
            aload 1 /* inBuffer */
            aload 9 /* inArray */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
        67: .line 709
            goto 69
        68: .line 710
      StackMap locals:
      StackMap stack:
            aload 1 /* inBuffer */
            aload 1 /* inBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 3 /* inLen */
            iadd
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        69: .line 712
      StackMap locals:
      StackMap stack:
            iload 14 /* k */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lload 6 /* inAddr */
        70: .line 713
            aload 9 /* inArray */
            iload 8 /* inOfs */
            iload 3 /* inLen */
            lload 10 /* outAddr */
            aload 13 /* outArray */
        71: .line 714
            iload 12 /* outOfs */
            iload 14 /* k */
            iadd
            iload 4 /* outLen */
            iload 14 /* k */
            isub
        72: .line 712
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptUpdate:(JJ[BIIJ[BII)I
            iadd
            istore 14 /* k */
        73: .line 717
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            ifnull 75
            iload 15 /* newPadBufferLen */
            ifeq 75
        74: .line 718
            aload 0 /* this */
            aload 1 /* inBuffer */
            iload 15 /* newPadBufferLen */
            invokevirtual sun.security.pkcs11.P11Cipher.bufferInputBytes:(Ljava/nio/ByteBuffer;I)V
        end local 15 // int newPadBufferLen
        75: .line 721
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
            iload 3 /* inLen */
            iload 14 /* k */
            isub
            iadd
            putfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
        76: .line 722
            aload 2 /* outBuffer */
            instanceof sun.nio.ch.DirectBuffer
            ifne 80
        77: .line 723
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifne 80
        78: .line 724
            aload 2 /* outBuffer */
            aload 13 /* outArray */
            iload 12 /* outOfs */
            iload 14 /* k */
            invokevirtual java.nio.ByteBuffer.put:([BII)Ljava/nio/ByteBuffer;
            pop
        79: .line 725
            goto 81
        80: .line 726
      StackMap locals:
      StackMap stack:
            aload 2 /* outBuffer */
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 14 /* k */
            iadd
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        81: .line 728
      StackMap locals:
      StackMap stack:
            iload 14 /* k */
        82: ireturn
        end local 14 // int k
        end local 13 // byte[] outArray
        end local 12 // int outOfs
        end local 10 // long outAddr
        end local 9 // byte[] inArray
        end local 8 // int inOfs
        end local 6 // long inAddr
        83: .line 729
      StackMap locals: sun.security.pkcs11.P11Cipher java.nio.ByteBuffer java.nio.ByteBuffer int int int
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
            astore 6 /* e */
        start local 6 // sun.security.pkcs11.wrapper.PKCS11Exception e
        84: .line 731
            aload 1 /* inBuffer */
            iload 5 /* origPos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        85: .line 732
            aload 6 /* e */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11Exception.getErrorCode:()J
            ldc 336
            lcmp
            ifne 88
        86: .line 734
            new javax.crypto.ShortBufferException
            dup
            invokespecial javax.crypto.ShortBufferException.<init>:()V
            aload 6 /* e */
            invokevirtual javax.crypto.ShortBufferException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
        87: .line 733
            checkcast javax.crypto.ShortBufferException
            athrow
        88: .line 736
      StackMap locals: sun.security.pkcs11.wrapper.PKCS11Exception
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual sun.security.pkcs11.P11Cipher.reset:(Z)V
        89: .line 737
            new java.security.ProviderException
            dup
            ldc "update() failed"
            aload 6 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 6 // sun.security.pkcs11.wrapper.PKCS11Exception e
        end local 5 // int origPos
        end local 4 // int outLen
        end local 3 // int inLen
        end local 2 // java.nio.ByteBuffer outBuffer
        end local 1 // java.nio.ByteBuffer inBuffer
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   90     0             this  Lsun/security/pkcs11/P11Cipher;
            0   90     1         inBuffer  Ljava/nio/ByteBuffer;
            0   90     2        outBuffer  Ljava/nio/ByteBuffer;
            1   90     3            inLen  I
            4   90     4           outLen  I
            7   90     5          origPos  I
            9   83     6           inAddr  J
           10   83     8            inOfs  I
           11   83     9          inArray  [B
           19   83    10          outAddr  J
           20   83    12           outOfs  I
           21   83    13         outArray  [B
           31   83    14                k  I
           43   75    15  newPadBufferLen  I
           47   54    16      bufCapacity  I
           84   90     6                e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           7    53      83  Class sun.security.pkcs11.wrapper.PKCS11Exception
          54    82      83  Class sun.security.pkcs11.wrapper.PKCS11Exception
    Exceptions:
      throws javax.crypto.ShortBufferException
    MethodParameters:
           Name  Flags
      inBuffer   
      outBuffer  

  private int implDoFinal(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=13, locals=10, args_size=4
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // byte[] out
        start local 2 // int outOfs
        start local 3 // int outLen
         0: .line 744
            aload 0 /* this */
            iconst_0
            invokevirtual sun.security.pkcs11.P11Cipher.doFinalLength:(I)I
            istore 4 /* requiredOutLen */
        start local 4 // int requiredOutLen
         1: .line 745
            iload 3 /* outLen */
            iload 4 /* requiredOutLen */
            if_icmpge 3
         2: .line 746
            new javax.crypto.ShortBufferException
            dup
            invokespecial javax.crypto.ShortBufferException.<init>:()V
            athrow
         3: .line 748
      StackMap locals: int
      StackMap stack:
            iconst_1
            istore 5 /* doCancel */
        start local 5 // boolean doCancel
         4: .line 750
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Cipher.ensureInitialized:()V
         5: .line 751
            iconst_0
            istore 6 /* k */
        start local 6 // int k
         6: .line 752
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.encrypt:Z
            ifeq 20
         7: .line 753
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            ifnull 15
         8: .line 754
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
         9: .line 755
            iload 4 /* requiredOutLen */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
            isub
        10: .line 754
            invokeinterface sun.security.pkcs11.P11Cipher$Padding.setPaddingBytes:([BI)I
            istore 7 /* actualPadLen */
        start local 7 // int actualPadLen
        11: .line 756
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
        12: .line 757
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            iconst_0
            iload 7 /* actualPadLen */
        13: .line 758
            lconst_0
            aload 1 /* out */
            iload 2 /* outOfs */
            iload 3 /* outLen */
        14: .line 756
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_EncryptUpdate:(JJ[BIIJ[BII)I
            istore 6 /* k */
        end local 7 // int actualPadLen
        15: .line 760
      StackMap locals: int int
      StackMap stack:
            iload 6 /* k */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
        16: .line 761
            lconst_0
            aload 1 /* out */
            iload 2 /* outOfs */
            iload 6 /* k */
            iadd
            iload 3 /* outLen */
            iload 6 /* k */
            isub
        17: .line 760
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_EncryptFinal:(JJ[BII)I
            iadd
            istore 6 /* k */
        18: .line 762
            iconst_0
            istore 5 /* doCancel */
        19: .line 763
            goto 41
        20: .line 765
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
            ifne 23
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            ifne 23
        21: .line 793
            aload 0 /* this */
            iload 5 /* doCancel */
            invokevirtual sun.security.pkcs11.P11Cipher.reset:(Z)V
        22: .line 766
            iconst_0
            ireturn
        23: .line 768
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            ifnull 37
        24: .line 769
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            ifeq 29
        25: .line 770
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lconst_0
        26: .line 771
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            iconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            iconst_0
        27: .line 772
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            arraylength
        28: .line 770
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptUpdate:(JJ[BIIJ[BII)I
            istore 6 /* k */
        29: .line 774
      StackMap locals:
      StackMap stack:
            iload 6 /* k */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            iload 6 /* k */
        30: .line 775
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            arraylength
            iload 6 /* k */
            isub
        31: .line 774
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptFinal:(JJ[BII)I
            iadd
            istore 6 /* k */
        32: .line 776
            iconst_0
            istore 5 /* doCancel */
        33: .line 778
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            iload 6 /* k */
            invokeinterface sun.security.pkcs11.P11Cipher$Padding.unpad:([BI)I
            istore 7 /* actualPadLen */
        start local 7 // int actualPadLen
        34: .line 779
            iload 6 /* k */
            iload 7 /* actualPadLen */
            isub
            istore 6 /* k */
        35: .line 780
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            iconst_0
            aload 1 /* out */
            iload 2 /* outOfs */
            iload 6 /* k */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        end local 7 // int actualPadLen
        36: .line 781
            goto 41
        37: .line 782
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lconst_0
            aload 1 /* out */
            iload 2 /* outOfs */
        38: .line 783
            iload 3 /* outLen */
        39: .line 782
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptFinal:(JJ[BII)I
            istore 6 /* k */
        40: .line 784
            iconst_0
            istore 5 /* doCancel */
        41: .line 787
      StackMap locals:
      StackMap stack:
            iload 6 /* k */
            istore 9
        42: .line 793
            aload 0 /* this */
            iload 5 /* doCancel */
            invokevirtual sun.security.pkcs11.P11Cipher.reset:(Z)V
        43: .line 787
            iload 9
            ireturn
        end local 6 // int k
        44: .line 788
      StackMap locals: sun.security.pkcs11.P11Cipher byte[] int int int int
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
            astore 6 /* e */
        start local 6 // sun.security.pkcs11.wrapper.PKCS11Exception e
        45: .line 789
            iconst_0
            istore 5 /* doCancel */
        46: .line 790
            aload 0 /* this */
            aload 6 /* e */
            invokevirtual sun.security.pkcs11.P11Cipher.handleException:(Lsun/security/pkcs11/wrapper/PKCS11Exception;)V
        47: .line 791
            new java.security.ProviderException
            dup
            ldc "doFinal() failed"
            aload 6 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 6 // sun.security.pkcs11.wrapper.PKCS11Exception e
        48: .line 792
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 8
        49: .line 793
            aload 0 /* this */
            iload 5 /* doCancel */
            invokevirtual sun.security.pkcs11.P11Cipher.reset:(Z)V
        50: .line 794
            aload 8
            athrow
        end local 5 // boolean doCancel
        end local 4 // int requiredOutLen
        end local 3 // int outLen
        end local 2 // int outOfs
        end local 1 // byte[] out
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   51     0            this  Lsun/security/pkcs11/P11Cipher;
            0   51     1             out  [B
            0   51     2          outOfs  I
            0   51     3          outLen  I
            1   51     4  requiredOutLen  I
            4   51     5        doCancel  Z
            6   44     6               k  I
           11   15     7    actualPadLen  I
           34   36     7    actualPadLen  I
           45   48     6               e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           4    21      44  Class sun.security.pkcs11.wrapper.PKCS11Exception
          23    42      44  Class sun.security.pkcs11.wrapper.PKCS11Exception
           4    21      48  any
          23    42      48  any
          44    48      48  any
    Exceptions:
      throws javax.crypto.ShortBufferException, javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    MethodParameters:
        Name  Flags
      out     
      outOfs  
      outLen  

  private int implDoFinal(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=13, locals=13, args_size=2
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // java.nio.ByteBuffer outBuffer
         0: .line 800
            aload 1 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 2 /* outLen */
        start local 2 // int outLen
         1: .line 801
            aload 0 /* this */
            iconst_0
            invokevirtual sun.security.pkcs11.P11Cipher.doFinalLength:(I)I
            istore 3 /* requiredOutLen */
        start local 3 // int requiredOutLen
         2: .line 802
            iload 2 /* outLen */
            iload 3 /* requiredOutLen */
            if_icmpge 4
         3: .line 803
            new javax.crypto.ShortBufferException
            dup
            invokespecial javax.crypto.ShortBufferException.<init>:()V
            athrow
         4: .line 806
      StackMap locals: int int
      StackMap stack:
            iconst_1
            istore 4 /* doCancel */
        start local 4 // boolean doCancel
         5: .line 808
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Cipher.ensureInitialized:()V
         6: .line 810
            lconst_0
            lstore 5 /* outAddr */
        start local 5 // long outAddr
         7: .line 811
            aconst_null
            astore 7 /* outArray */
        start local 7 // byte[] outArray
         8: .line 812
            iconst_0
            istore 8 /* outOfs */
        start local 8 // int outOfs
         9: .line 813
            aload 1 /* outBuffer */
            instanceof sun.nio.ch.DirectBuffer
            ifeq 13
        10: .line 814
            aload 1 /* outBuffer */
            checkcast sun.nio.ch.DirectBuffer
            invokeinterface sun.nio.ch.DirectBuffer.address:()J
            lstore 5 /* outAddr */
        11: .line 815
            aload 1 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 8 /* outOfs */
        12: .line 816
            goto 18
        13: .line 817
      StackMap locals: sun.security.pkcs11.P11Cipher java.nio.ByteBuffer int int int long byte[] int
      StackMap stack:
            aload 1 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifeq 17
        14: .line 818
            aload 1 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.array:()[B
            astore 7 /* outArray */
        15: .line 819
            aload 1 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            aload 1 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            iadd
            istore 8 /* outOfs */
        16: .line 820
            goto 18
        17: .line 821
      StackMap locals:
      StackMap stack:
            iload 2 /* outLen */
            newarray 8
            astore 7 /* outArray */
        18: .line 825
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 9 /* k */
        start local 9 // int k
        19: .line 827
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.encrypt:Z
            ifeq 33
        20: .line 828
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            ifnull 28
        21: .line 829
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
        22: .line 830
            iload 3 /* requiredOutLen */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
            isub
        23: .line 829
            invokeinterface sun.security.pkcs11.P11Cipher$Padding.setPaddingBytes:([BI)I
            istore 10 /* actualPadLen */
        start local 10 // int actualPadLen
        24: .line 831
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
        25: .line 832
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            iconst_0
            iload 10 /* actualPadLen */
        26: .line 833
            lload 5 /* outAddr */
            aload 7 /* outArray */
            iload 8 /* outOfs */
            iload 2 /* outLen */
        27: .line 831
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_EncryptUpdate:(JJ[BIIJ[BII)I
            istore 9 /* k */
        end local 10 // int actualPadLen
        28: .line 835
      StackMap locals: int
      StackMap stack:
            iload 9 /* k */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
        29: .line 836
            lload 5 /* outAddr */
            aload 7 /* outArray */
            iload 8 /* outOfs */
            iload 9 /* k */
            iadd
            iload 2 /* outLen */
            iload 9 /* k */
            isub
        30: .line 835
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_EncryptFinal:(JJ[BII)I
            iadd
            istore 9 /* k */
        31: .line 837
            iconst_0
            istore 4 /* doCancel */
        32: .line 838
            goto 56
        33: .line 840
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
            ifne 36
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            ifne 36
        34: .line 878
            aload 0 /* this */
            iload 4 /* doCancel */
            invokevirtual sun.security.pkcs11.P11Cipher.reset:(Z)V
        35: .line 841
            iconst_0
            ireturn
        36: .line 844
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            ifnull 52
        37: .line 845
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            ifeq 43
        38: .line 846
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
        39: .line 847
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            iconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
        40: .line 848
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            iconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            arraylength
        41: .line 846
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptUpdate:(JJ[BIIJ[BII)I
            istore 9 /* k */
        42: .line 849
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.padBufferLen:I
        43: .line 851
      StackMap locals:
      StackMap stack:
            iload 9 /* k */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
        44: .line 852
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            iload 9 /* k */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            arraylength
            iload 9 /* k */
            isub
        45: .line 851
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptFinal:(JJ[BII)I
            iadd
            istore 9 /* k */
        46: .line 853
            iconst_0
            istore 4 /* doCancel */
        47: .line 855
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            iload 9 /* k */
            invokeinterface sun.security.pkcs11.P11Cipher$Padding.unpad:([BI)I
            istore 10 /* actualPadLen */
        start local 10 // int actualPadLen
        48: .line 856
            iload 9 /* k */
            iload 10 /* actualPadLen */
            isub
            istore 9 /* k */
        49: .line 857
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            astore 7 /* outArray */
        50: .line 858
            iconst_0
            istore 8 /* outOfs */
        end local 10 // int actualPadLen
        51: .line 859
            goto 56
        52: .line 860
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
        53: .line 861
            lload 5 /* outAddr */
            aload 7 /* outArray */
            iload 8 /* outOfs */
            iload 2 /* outLen */
        54: .line 860
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptFinal:(JJ[BII)I
            istore 9 /* k */
        55: .line 862
            iconst_0
            istore 4 /* doCancel */
        56: .line 865
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.encrypt:Z
            ifne 57
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            ifnonnull 59
        57: .line 866
      StackMap locals:
      StackMap stack:
            aload 1 /* outBuffer */
            instanceof sun.nio.ch.DirectBuffer
            ifne 61
        58: .line 867
            aload 1 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifne 61
        59: .line 868
      StackMap locals:
      StackMap stack:
            aload 1 /* outBuffer */
            aload 7 /* outArray */
            iload 8 /* outOfs */
            iload 9 /* k */
            invokevirtual java.nio.ByteBuffer.put:([BII)Ljava/nio/ByteBuffer;
            pop
        60: .line 869
            goto 62
        61: .line 870
      StackMap locals:
      StackMap stack:
            aload 1 /* outBuffer */
            aload 1 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 9 /* k */
            iadd
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        62: .line 872
      StackMap locals:
      StackMap stack:
            iload 9 /* k */
            istore 12
        63: .line 878
            aload 0 /* this */
            iload 4 /* doCancel */
            invokevirtual sun.security.pkcs11.P11Cipher.reset:(Z)V
        64: .line 872
            iload 12
            ireturn
        end local 9 // int k
        end local 8 // int outOfs
        end local 7 // byte[] outArray
        end local 5 // long outAddr
        65: .line 873
      StackMap locals: sun.security.pkcs11.P11Cipher java.nio.ByteBuffer int int int
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
            astore 5 /* e */
        start local 5 // sun.security.pkcs11.wrapper.PKCS11Exception e
        66: .line 874
            iconst_0
            istore 4 /* doCancel */
        67: .line 875
            aload 0 /* this */
            aload 5 /* e */
            invokevirtual sun.security.pkcs11.P11Cipher.handleException:(Lsun/security/pkcs11/wrapper/PKCS11Exception;)V
        68: .line 876
            new java.security.ProviderException
            dup
            ldc "doFinal() failed"
            aload 5 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 5 // sun.security.pkcs11.wrapper.PKCS11Exception e
        69: .line 877
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 11
        70: .line 878
            aload 0 /* this */
            iload 4 /* doCancel */
            invokevirtual sun.security.pkcs11.P11Cipher.reset:(Z)V
        71: .line 879
            aload 11
            athrow
        end local 4 // boolean doCancel
        end local 3 // int requiredOutLen
        end local 2 // int outLen
        end local 1 // java.nio.ByteBuffer outBuffer
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   72     0            this  Lsun/security/pkcs11/P11Cipher;
            0   72     1       outBuffer  Ljava/nio/ByteBuffer;
            1   72     2          outLen  I
            2   72     3  requiredOutLen  I
            5   72     4        doCancel  Z
            7   65     5         outAddr  J
            8   65     7        outArray  [B
            9   65     8          outOfs  I
           19   65     9               k  I
           24   28    10    actualPadLen  I
           48   51    10    actualPadLen  I
           66   69     5               e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           5    34      65  Class sun.security.pkcs11.wrapper.PKCS11Exception
          36    63      65  Class sun.security.pkcs11.wrapper.PKCS11Exception
           5    34      69  any
          36    63      69  any
          65    69      69  any
    Exceptions:
      throws javax.crypto.ShortBufferException, javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    MethodParameters:
           Name  Flags
      outBuffer  

  private void handleException(sun.security.pkcs11.wrapper.PKCS11Exception);
    descriptor: (Lsun/security/pkcs11/wrapper/PKCS11Exception;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // sun.security.pkcs11.wrapper.PKCS11Exception e
         0: .line 884
            aload 1 /* e */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11Exception.getErrorCode:()J
            lstore 2 /* errorCode */
        start local 2 // long errorCode
         1: .line 885
            lload 2 /* errorCode */
            ldc 336
            lcmp
            ifne 4
         2: .line 887
            new javax.crypto.ShortBufferException
            dup
            invokespecial javax.crypto.ShortBufferException.<init>:()V
            aload 1 /* e */
            invokevirtual javax.crypto.ShortBufferException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
         3: .line 886
            checkcast javax.crypto.ShortBufferException
            athrow
         4: .line 888
      StackMap locals: long
      StackMap stack:
            lload 2 /* errorCode */
            ldc 33
            lcmp
            ifeq 6
         5: .line 889
            lload 2 /* errorCode */
            ldc 65
            lcmp
            ifne 8
         6: .line 891
      StackMap locals:
      StackMap stack:
            new javax.crypto.IllegalBlockSizeException
            dup
            aload 1 /* e */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11Exception.toString:()Ljava/lang/String;
            invokespecial javax.crypto.IllegalBlockSizeException.<init>:(Ljava/lang/String;)V
            aload 1 /* e */
            invokevirtual javax.crypto.IllegalBlockSizeException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
         7: .line 890
            checkcast javax.crypto.IllegalBlockSizeException
            athrow
         8: .line 893
      StackMap locals:
      StackMap stack:
            return
        end local 2 // long errorCode
        end local 1 // sun.security.pkcs11.wrapper.PKCS11Exception e
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lsun/security/pkcs11/P11Cipher;
            0    9     1          e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
            1    9     2  errorCode  J
    Exceptions:
      throws javax.crypto.ShortBufferException, javax.crypto.IllegalBlockSizeException
    MethodParameters:
      Name  Flags
      e     

  protected byte[] engineWrap(java.security.Key);
    descriptor: (Ljava/security/Key;)[B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // java.security.Key key
         0: .line 899
            new java.lang.UnsupportedOperationException
            dup
            ldc "engineWrap()"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.security.Key key
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/pkcs11/P11Cipher;
            0    1     1   key  Ljava/security/Key;
    Exceptions:
      throws javax.crypto.IllegalBlockSizeException, java.security.InvalidKeyException
    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=3, locals=4, args_size=4
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // byte[] wrappedKey
        start local 2 // java.lang.String wrappedKeyAlgorithm
        start local 3 // int wrappedKeyType
         0: .line 907
            new java.lang.UnsupportedOperationException
            dup
            ldc "engineUnwrap()"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // int wrappedKeyType
        end local 2 // java.lang.String wrappedKeyAlgorithm
        end local 1 // byte[] wrappedKey
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    1     0                 this  Lsun/security/pkcs11/P11Cipher;
            0    1     1           wrappedKey  [B
            0    1     2  wrappedKeyAlgorithm  Ljava/lang/String;
            0    1     3       wrappedKeyType  I
    Exceptions:
      throws java.security.InvalidKeyException, java.security.NoSuchAlgorithmException
    MethodParameters:
                     Name  Flags
      wrappedKey           
      wrappedKeyAlgorithm  
      wrappedKeyType       

  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.P11Cipher this
        start local 1 // java.security.Key key
         0: .line 914
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            aload 1 /* key */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.keyAlgorithm:Ljava/lang/String;
         1: .line 913
            invokestatic sun.security.pkcs11.P11SecretKeyFactory.convertKey:(Lsun/security/pkcs11/Token;Ljava/security/Key;Ljava/lang/String;)Lsun/security/pkcs11/P11Key;
         2: .line 914
            invokevirtual sun.security.pkcs11.P11Key.length:()I
         3: .line 913
            istore 2 /* n */
        start local 2 // int n
         4: .line 915
            iload 2 /* n */
            ireturn
        end local 2 // int n
        end local 1 // java.security.Key key
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/pkcs11/P11Cipher;
            0    5     1   key  Ljava/security/Key;
            4    5     2     n  I
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
      Name  Flags
      key   

  private final void bufferInputBytes(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int len
         0: .line 919
            aload 1 /* in */
            iload 2 /* inOfs */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         1: .line 920
            aload 0 /* this */
            dup
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            iload 3 /* len */
            iadd
            putfield sun.security.pkcs11.P11Cipher.padBufferLen:I
         2: .line 921
            aload 0 /* this */
            dup
            getfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
            iload 3 /* len */
            iadd
            putfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
         3: .line 922
            return
        end local 3 // int len
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lsun/security/pkcs11/P11Cipher;
            0    4     1     in  [B
            0    4     2  inOfs  I
            0    4     3    len  I
    MethodParameters:
       Name  Flags
      in     
      inOfs  
      len    

  private final void bufferInputBytes(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // java.nio.ByteBuffer inBuffer
        start local 2 // int len
         0: .line 925
            aload 1 /* inBuffer */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            iload 2 /* len */
            invokevirtual java.nio.ByteBuffer.get:([BII)Ljava/nio/ByteBuffer;
            pop
         1: .line 926
            aload 0 /* this */
            dup
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            iload 2 /* len */
            iadd
            putfield sun.security.pkcs11.P11Cipher.padBufferLen:I
         2: .line 927
            aload 0 /* this */
            dup
            getfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
            iload 2 /* len */
            iadd
            putfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
         3: .line 928
            return
        end local 2 // int len
        end local 1 // java.nio.ByteBuffer inBuffer
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lsun/security/pkcs11/P11Cipher;
            0    4     1  inBuffer  Ljava/nio/ByteBuffer;
            0    4     2       len  I
    MethodParameters:
          Name  Flags
      inBuffer  
      len       
}
SourceFile: "P11Cipher.java"
NestMembers:
  sun.security.pkcs11.P11Cipher$PKCS5Padding  sun.security.pkcs11.P11Cipher$Padding
InnerClasses:
  private PKCS5Padding = sun.security.pkcs11.P11Cipher$PKCS5Padding of sun.security.pkcs11.P11Cipher
  private abstract Padding = sun.security.pkcs11.P11Cipher$Padding of sun.security.pkcs11.P11Cipher