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 7
         2: .line 349
            aload 2 /* key */
            instanceof sun.security.pkcs11.P11Key
            ifeq 3
            aload 2 /* key */
            checkcast sun.security.pkcs11.P11Key
            invokevirtual sun.security.pkcs11.P11Key.length:()I
            iconst_3
            ishr
            goto 4
         3: .line 350
      StackMap locals:
      StackMap stack:
            aload 2 /* key */
            invokeinterface java.security.Key.getEncoded:()[B
            arraylength
      StackMap locals:
      StackMap stack: int
         4: aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.fixedKeySize:I
         5: .line 349
            if_icmpeq 7
         6: .line 351
            new java.security.InvalidKeyException
            dup
            ldc "Key size is invalid"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 353
      StackMap locals:
      StackMap stack:
            iload 1 /* opmode */
            tableswitch { // 1 - 2
                    1: 8
                    2: 10
              default: 12
          }
         8: .line 355
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11Cipher.encrypt:Z
         9: .line 356
            goto 15
        10: .line 358
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.encrypt:Z
        11: .line 359
            goto 15
        12: .line 361
      StackMap locals:
      StackMap stack:
            new java.security.InvalidAlgorithmParameterException
            dup
        13: .line 362
            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;
        14: .line 361
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        15: .line 364
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockMode:I
            iconst_3
            if_icmpne 24
        16: .line 365
            aload 3 /* iv */
            ifnull 40
        17: .line 366
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockSize:I
            ifne 21
        18: .line 367
            new java.security.InvalidAlgorithmParameterException
            dup
        19: .line 368
            ldc "IV not used with stream ciphers"
        20: .line 367
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        21: .line 370
      StackMap locals:
      StackMap stack:
            new java.security.InvalidAlgorithmParameterException
            dup
        22: .line 371
            ldc "IV not used in ECB mode"
        23: .line 370
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        24: .line 375
      StackMap locals:
      StackMap stack:
            aload 3 /* iv */
            ifnonnull 36
        25: .line 376
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.encrypt:Z
            ifne 31
        26: .line 378
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockMode:I
            iconst_4
            if_icmpne 28
        27: .line 379
            ldc "IV must be specified for decryption in CBC mode"
            goto 29
        28: .line 380
      StackMap locals:
      StackMap stack:
            ldc "IV must be specified for decryption in CTR mode"
        29: .line 377
      StackMap locals:
      StackMap stack: java.lang.String
            astore 5 /* exMsg */
        start local 5 // java.lang.String exMsg
        30: .line 381
            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
        31: .line 384
      StackMap locals:
      StackMap stack:
            aload 4 /* random */
            ifnonnull 33
        32: .line 385
            invokestatic sun.security.jca.JCAUtil.getSecureRandom:()Ljava/security/SecureRandom;
            astore 4 /* random */
        33: .line 387
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockSize:I
            newarray 8
            astore 3 /* iv */
        34: .line 388
            aload 4 /* random */
            aload 3 /* iv */
            invokevirtual java.security.SecureRandom.nextBytes:([B)V
        35: .line 389
            goto 40
        36: .line 390
      StackMap locals:
      StackMap stack:
            aload 3 /* iv */
            arraylength
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockSize:I
            if_icmpeq 40
        37: .line 391
            new java.security.InvalidAlgorithmParameterException
            dup
        38: .line 392
            ldc "IV length must match block size"
        39: .line 391
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        40: .line 396
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* iv */
            putfield sun.security.pkcs11.P11Cipher.iv:[B
        41: .line 397
            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;
        42: .line 399
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Cipher.initialize:()V
        43: .line 400
            goto 46
      StackMap locals:
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
        44: astore 5 /* e */
        start local 5 // sun.security.pkcs11.wrapper.PKCS11Exception e
        45: .line 401
            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
        46: .line 403
      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   47     0    this  Lsun/security/pkcs11/P11Cipher;
            0   47     1  opmode  I
            0   47     2     key  Ljava/security/Key;
            0   47     3      iv  [B
            0   47     4  random  Ljava/security/SecureRandom;
           30   31     5   exMsg  Ljava/lang/String;
           45   46     5       e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
          42    43      44  Class sun.security.pkcs11.wrapper.PKCS11Exception
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      iv      
      random  

  private void reset(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.security.pkcs11.P11Cipher this
        start local 1 // boolean doCancel
         0: .line 408
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.initialized:Z
            ifne 2
         1: .line 409
            return
         2: .line 411
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.initialized:Z
         3: .line 413
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            ifnonnull 9
         4: .line 420
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
         5: .line 421
            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 422
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
         7: .line 423
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.padBufferLen:I
         8: .line 414
            return
         9: .line 416
      StackMap locals:
      StackMap stack:
            iload 1 /* doCancel */
            ifeq 18
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.explicitCancel:Z
            ifeq 18
        10: .line 417
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Cipher.cancelOperation:()V
        11: .line 419
            goto 18
      StackMap locals:
      StackMap stack: java.lang.Throwable
        12: astore 2
        13: .line 420
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        14: .line 421
            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;
        15: .line 422
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
        16: .line 423
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.padBufferLen:I
        17: .line 424
            aload 2
            athrow
        18: .line 420
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        19: .line 421
            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;
        20: .line 422
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
        21: .line 423
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.padBufferLen:I
        22: .line 425
            return
        end local 1 // boolean doCancel
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   23     0      this  Lsun/security/pkcs11/P11Cipher;
            0   23     1  doCancel  Z
      Exception table:
        from    to  target  type
           3     4      12  any
           9    12      12  any
    MethodParameters:
          Name  Flags
      doCancel  

  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 428
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.ensureValid:()V
         1: .line 429
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.hasObjects:()Z
            ifne 4
         2: .line 430
            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;
         3: .line 431
            return
         4: .line 435
      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
         5: .line 436
            iload 1 /* bufLen */
            newarray 8
            astore 2 /* buffer */
        start local 2 // byte[] buffer
         6: .line 437
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.encrypt:Z
            ifeq 9
         7: .line 438
            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
         8: .line 439
            goto 13
         9: .line 440
      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
        10: .line 442
            goto 13
      StackMap locals: sun.security.pkcs11.P11Cipher
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
        11: astore 1 /* e */
        start local 1 // sun.security.pkcs11.wrapper.PKCS11Exception e
        12: .line 443
            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
        13: .line 446
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Lsun/security/pkcs11/P11Cipher;
            5   10     1  bufLen  I
            6   10     2  buffer  [B
           12   13     1       e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           4    10      11  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 449
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.initialized:Z
            ifne 2
         1: .line 450
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Cipher.initialize:()V
         2: .line 452
      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=4, args_size=1
        start local 0 // sun.security.pkcs11.P11Cipher this
         0: .line 455
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.p11Key:Lsun/security/pkcs11/P11Key;
            ifnonnull 4
         1: .line 456
            new java.security.ProviderException
            dup
         2: .line 457
            ldc "Operation cannot be performed without calling engineInit first"
         3: .line 456
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 460
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.ensureValid:()V
         5: .line 461
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.getKeyID:()J
            lstore 1 /* p11KeyID */
        start local 1 // long p11KeyID
         6: .line 463
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.session:Lsun/security/pkcs11/Session;
            ifnonnull 8
         7: .line 464
            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;
         8: .line 466
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.blockMode:I
            iconst_5
            if_icmpne 10
         9: .line 467
            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 11
        10: .line 468
      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
        11: .line 466
      StackMap locals:
      StackMap stack: sun.security.pkcs11.wrapper.CK_MECHANISM
            astore 3 /* mechParams */
        start local 3 // sun.security.pkcs11.wrapper.CK_MECHANISM mechParams
        12: .line 469
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.encrypt:Z
            ifeq 15
        13: .line 470
            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 3 /* mechParams */
            lload 1 /* p11KeyID */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_EncryptInit:(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J)V
        14: .line 471
            goto 21
        15: .line 472
      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 3 /* mechParams */
            lload 1 /* p11KeyID */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptInit:(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J)V
        end local 3 // sun.security.pkcs11.wrapper.CK_MECHANISM mechParams
        16: .line 474
            goto 21
      StackMap locals: sun.security.pkcs11.P11Cipher long
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
        17: astore 3 /* e */
        start local 3 // sun.security.pkcs11.wrapper.PKCS11Exception e
        18: .line 475
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        19: .line 476
            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;
        20: .line 477
            aload 3 /* e */
            athrow
        end local 3 // sun.security.pkcs11.wrapper.PKCS11Exception e
        21: .line 479
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11Cipher.initialized:Z
        22: .line 480
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
        23: .line 481
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.padBufferLen:I
        24: .line 482
            return
        end local 1 // long p11KeyID
        end local 0 // sun.security.pkcs11.P11Cipher this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   25     0        this  Lsun/security/pkcs11/P11Cipher;
            6   25     1    p11KeyID  J
           12   16     3  mechParams  Lsun/security/pkcs11/wrapper/CK_MECHANISM;
           18   21     3           e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           6    16      17  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 486
            iload 1 /* inLen */
            ifgt 2
         1: .line 487
            iconst_0
            ireturn
         2: .line 490
      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 491
            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 493
            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 495
      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 500
            iload 1 /* inLen */
            ifge 2
         1: .line 501
            iconst_0
            ireturn
         2: .line 504
      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 505
            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 507
            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 509
      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  

  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 515
            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 516
            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 517
            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 518
      StackMap locals:
      StackMap stack: javax.crypto.ShortBufferException
            astore 4 /* e */
        start local 4 // javax.crypto.ShortBufferException e
         5: .line 520
            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 527
            aload 4 /* out */
            arraylength
            iload 5 /* outOfs */
            isub
            istore 6 /* outLen */
        start local 6 // int outLen
         1: .line 528
            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 535
            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 542
            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 543
            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 544
            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 545
      StackMap locals:
      StackMap stack: javax.crypto.ShortBufferException
            astore 4 /* e */
        start local 4 // javax.crypto.ShortBufferException e
         5: .line 547
            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 555
            iconst_0
            istore 6 /* n */
        start local 6 // int n
         1: .line 556
            iload 3 /* inLen */
            ifeq 4
            aload 1 /* in */
            ifnull 4
         2: .line 557
            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 558
            iload 5 /* outOfs */
            iload 6 /* n */
            iadd
            istore 5 /* outOfs */
         4: .line 560
      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 561
            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 569
            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 570
            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 571
            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 576
            iload 6 /* outLen */
            aload 0 /* this */
            iload 3 /* inLen */
            invokevirtual sun.security.pkcs11.P11Cipher.updateLength:(I)I
            if_icmpge 2
         1: .line 577
            new javax.crypto.ShortBufferException
            dup
            invokespecial javax.crypto.ShortBufferException.<init>:()V
            athrow
         2: .line 580
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Cipher.ensureInitialized:()V
         3: .line 581
            iconst_0
            istore 7 /* k */
        start local 7 // int k
         4: .line 582
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.encrypt:Z
            ifeq 9
         5: .line 583
            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 584
            lconst_0
            aload 4 /* out */
            iload 5 /* outOfs */
            iload 6 /* outLen */
         7: .line 583
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_EncryptUpdate:(JJ[BIIJ[BII)I
            istore 7 /* k */
         8: .line 585
            goto 36
         9: .line 586
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 8 /* newPadBufferLen */
        start local 8 // int newPadBufferLen
        10: .line 587
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            ifnull 30
        11: .line 588
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            ifeq 26
        12: .line 592
            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 593
            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 594
            iload 3 /* inLen */
            iload 9 /* bufCapacity */
            if_icmple 19
        15: .line 595
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 9 /* bufCapacity */
            invokevirtual sun.security.pkcs11.P11Cipher.bufferInputBytes:([BII)V
        16: .line 596
            iload 2 /* inOfs */
            iload 9 /* bufCapacity */
            iadd
            istore 2 /* inOfs */
        17: .line 597
            iload 3 /* inLen */
            iload 9 /* bufCapacity */
            isub
            istore 3 /* inLen */
        18: .line 598
            goto 21
        19: .line 599
      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 600
            iconst_0
            ireturn
        end local 9 // int bufCapacity
        21: .line 603
      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 604
            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 605
            lconst_0
            aload 4 /* out */
            iload 5 /* outOfs */
            iload 6 /* outLen */
        24: .line 603
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptUpdate:(JJ[BIIJ[BII)I
            istore 7 /* k */
        25: .line 606
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.padBufferLen:I
        26: .line 608
      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 609
            iload 8 /* newPadBufferLen */
            ifne 29
        28: .line 610
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            arraylength
            istore 8 /* newPadBufferLen */
        29: .line 612
      StackMap locals:
      StackMap stack:
            iload 3 /* inLen */
            iload 8 /* newPadBufferLen */
            isub
            istore 3 /* inLen */
        30: .line 614
      StackMap locals:
      StackMap stack:
            iload 3 /* inLen */
            ifle 34
        31: .line 615
            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 616
            iload 3 /* inLen */
            lconst_0
            aload 4 /* out */
            iload 5 /* outOfs */
            iload 7 /* k */
            iadd
            iload 6 /* outLen */
            iload 7 /* k */
            isub
        33: .line 615
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptUpdate:(JJ[BIIJ[BII)I
            iadd
            istore 7 /* k */
        34: .line 619
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            ifnull 36
        35: .line 620
            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 623
      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 624
            iload 7 /* k */
        38: ireturn
        end local 7 // int k
        39: .line 625
      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 626
            aload 7 /* e */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11Exception.getErrorCode:()J
            ldc 336
            lcmp
            ifne 43
        41: .line 628
            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 627
            checkcast javax.crypto.ShortBufferException
            athrow
        43: .line 630
      StackMap locals: sun.security.pkcs11.wrapper.PKCS11Exception
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual sun.security.pkcs11.P11Cipher.reset:(Z)V
        44: .line 631
            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 637
            aload 1 /* inBuffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 3 /* inLen */
        start local 3 // int inLen
         1: .line 638
            iload 3 /* inLen */
            ifgt 3
         2: .line 639
            iconst_0
            ireturn
         3: .line 642
      StackMap locals: int
      StackMap stack:
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 4 /* outLen */
        start local 4 // int outLen
         4: .line 643
            iload 4 /* outLen */
            aload 0 /* this */
            iload 3 /* inLen */
            invokevirtual sun.security.pkcs11.P11Cipher.updateLength:(I)I
            if_icmpge 6
         5: .line 644
            new javax.crypto.ShortBufferException
            dup
            invokespecial javax.crypto.ShortBufferException.<init>:()V
            athrow
         6: .line 646
      StackMap locals: int
      StackMap stack:
            aload 1 /* inBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 5 /* origPos */
        start local 5 // int origPos
         7: .line 648
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Cipher.ensureInitialized:()V
         8: .line 650
            lconst_0
            lstore 6 /* inAddr */
        start local 6 // long inAddr
         9: .line 651
            iconst_0
            istore 8 /* inOfs */
        start local 8 // int inOfs
        10: .line 652
            aconst_null
            astore 9 /* inArray */
        start local 9 // byte[] inArray
        11: .line 654
            aload 1 /* inBuffer */
            instanceof sun.nio.ch.DirectBuffer
            ifeq 15
        12: .line 655
            aload 1 /* inBuffer */
            checkcast sun.nio.ch.DirectBuffer
            invokeinterface sun.nio.ch.DirectBuffer.address:()J
            lstore 6 /* inAddr */
        13: .line 656
            iload 5 /* origPos */
            istore 8 /* inOfs */
        14: .line 657
            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 658
            aload 1 /* inBuffer */
            invokevirtual java.nio.ByteBuffer.array:()[B
            astore 9 /* inArray */
        17: .line 659
            iload 5 /* origPos */
            aload 1 /* inBuffer */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            iadd
            istore 8 /* inOfs */
        18: .line 662
      StackMap locals:
      StackMap stack:
            lconst_0
            lstore 10 /* outAddr */
        start local 10 // long outAddr
        19: .line 663
            iconst_0
            istore 12 /* outOfs */
        start local 12 // int outOfs
        20: .line 664
            aconst_null
            astore 13 /* outArray */
        start local 13 // byte[] outArray
        21: .line 665
            aload 2 /* outBuffer */
            instanceof sun.nio.ch.DirectBuffer
            ifeq 25
        22: .line 666
            aload 2 /* outBuffer */
            checkcast sun.nio.ch.DirectBuffer
            invokeinterface sun.nio.ch.DirectBuffer.address:()J
            lstore 10 /* outAddr */
        23: .line 667
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 12 /* outOfs */
        24: .line 668
            goto 30
        25: .line 669
      StackMap locals: long int byte[]
      StackMap stack:
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifeq 29
        26: .line 670
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.array:()[B
            astore 13 /* outArray */
        27: .line 671
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            iadd
            istore 12 /* outOfs */
        28: .line 672
            goto 30
        29: .line 673
      StackMap locals:
      StackMap stack:
            iload 4 /* outLen */
            newarray 8
            astore 13 /* outArray */
        30: .line 677
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 14 /* k */
        start local 14 // int k
        31: .line 678
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.encrypt:Z
            ifeq 42
        32: .line 679
            lload 6 /* inAddr */
            lconst_0
            lcmp
            ifne 36
            aload 9 /* inArray */
            ifnonnull 36
        33: .line 680
            iload 3 /* inLen */
            newarray 8
            astore 9 /* inArray */
        34: .line 681
            aload 1 /* inBuffer */
            aload 9 /* inArray */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
        35: .line 682
            goto 37
        36: .line 683
      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 685
      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 686
            lload 6 /* inAddr */
            aload 9 /* inArray */
            iload 8 /* inOfs */
            iload 3 /* inLen */
        39: .line 687
            lload 10 /* outAddr */
            aload 13 /* outArray */
            iload 12 /* outOfs */
            iload 4 /* outLen */
        40: .line 685
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_EncryptUpdate:(JJ[BIIJ[BII)I
            istore 14 /* k */
        41: .line 688
            goto 75
        42: .line 689
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 15 /* newPadBufferLen */
        start local 15 // int newPadBufferLen
        43: .line 690
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            ifnull 63
        44: .line 691
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            ifeq 59
        45: .line 695
            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 696
            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 697
            iload 3 /* inLen */
            iload 16 /* bufCapacity */
            if_icmple 52
        48: .line 698
            aload 0 /* this */
            aload 1 /* inBuffer */
            iload 16 /* bufCapacity */
            invokevirtual sun.security.pkcs11.P11Cipher.bufferInputBytes:(Ljava/nio/ByteBuffer;I)V
        49: .line 699
            iload 8 /* inOfs */
            iload 16 /* bufCapacity */
            iadd
            istore 8 /* inOfs */
        50: .line 700
            iload 3 /* inLen */
            iload 16 /* bufCapacity */
            isub
            istore 3 /* inLen */
        51: .line 701
            goto 54
        52: .line 702
      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 703
            iconst_0
            ireturn
        end local 16 // int bufCapacity
        54: .line 706
      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 707
            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 708
            iload 12 /* outOfs */
            iload 4 /* outLen */
        57: .line 706
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptUpdate:(JJ[BIIJ[BII)I
            istore 14 /* k */
        58: .line 709
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.padBufferLen:I
        59: .line 711
      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 712
            iload 15 /* newPadBufferLen */
            ifne 62
        61: .line 713
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            arraylength
            istore 15 /* newPadBufferLen */
        62: .line 715
      StackMap locals:
      StackMap stack:
            iload 3 /* inLen */
            iload 15 /* newPadBufferLen */
            isub
            istore 3 /* inLen */
        63: .line 717
      StackMap locals:
      StackMap stack:
            iload 3 /* inLen */
            ifle 73
        64: .line 718
            lload 6 /* inAddr */
            lconst_0
            lcmp
            ifne 68
            aload 9 /* inArray */
            ifnonnull 68
        65: .line 719
            iload 3 /* inLen */
            newarray 8
            astore 9 /* inArray */
        66: .line 720
            aload 1 /* inBuffer */
            aload 9 /* inArray */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
        67: .line 721
            goto 69
        68: .line 722
      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 724
      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 725
            aload 9 /* inArray */
            iload 8 /* inOfs */
            iload 3 /* inLen */
            lload 10 /* outAddr */
            aload 13 /* outArray */
        71: .line 726
            iload 12 /* outOfs */
            iload 14 /* k */
            iadd
            iload 4 /* outLen */
            iload 14 /* k */
            isub
        72: .line 724
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptUpdate:(JJ[BIIJ[BII)I
            iadd
            istore 14 /* k */
        73: .line 729
      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 730
            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 733
      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 734
            aload 2 /* outBuffer */
            instanceof sun.nio.ch.DirectBuffer
            ifne 80
        77: .line 735
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifne 80
        78: .line 736
            aload 2 /* outBuffer */
            aload 13 /* outArray */
            iload 12 /* outOfs */
            iload 14 /* k */
            invokevirtual java.nio.ByteBuffer.put:([BII)Ljava/nio/ByteBuffer;
            pop
        79: .line 737
            goto 81
        80: .line 738
      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 740
      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 741
      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 743
            aload 1 /* inBuffer */
            iload 5 /* origPos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        85: .line 744
            aload 6 /* e */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11Exception.getErrorCode:()J
            ldc 336
            lcmp
            ifne 88
        86: .line 746
            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 745
            checkcast javax.crypto.ShortBufferException
            athrow
        88: .line 748
      StackMap locals: sun.security.pkcs11.wrapper.PKCS11Exception
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual sun.security.pkcs11.P11Cipher.reset:(Z)V
        89: .line 749
            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 756
            aload 0 /* this */
            iconst_0
            invokevirtual sun.security.pkcs11.P11Cipher.doFinalLength:(I)I
            istore 4 /* requiredOutLen */
        start local 4 // int requiredOutLen
         1: .line 757
            iload 3 /* outLen */
            iload 4 /* requiredOutLen */
            if_icmpge 3
         2: .line 758
            new javax.crypto.ShortBufferException
            dup
            invokespecial javax.crypto.ShortBufferException.<init>:()V
            athrow
         3: .line 760
      StackMap locals: int
      StackMap stack:
            iconst_1
            istore 5 /* doCancel */
        start local 5 // boolean doCancel
         4: .line 762
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Cipher.ensureInitialized:()V
         5: .line 763
            iconst_0
            istore 6 /* k */
        start local 6 // int k
         6: .line 764
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.encrypt:Z
            ifeq 20
         7: .line 765
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            ifnull 15
         8: .line 766
            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 767
            iload 4 /* requiredOutLen */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
            isub
        10: .line 766
            invokeinterface sun.security.pkcs11.P11Cipher$Padding.setPaddingBytes:([BI)I
            istore 7 /* actualPadLen */
        start local 7 // int actualPadLen
        11: .line 768
            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 769
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            iconst_0
            iload 7 /* actualPadLen */
        13: .line 770
            lconst_0
            aload 1 /* out */
            iload 2 /* outOfs */
            iload 3 /* outLen */
        14: .line 768
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_EncryptUpdate:(JJ[BIIJ[BII)I
            istore 6 /* k */
        end local 7 // int actualPadLen
        15: .line 772
      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 773
            lconst_0
            aload 1 /* out */
            iload 2 /* outOfs */
            iload 6 /* k */
            iadd
            iload 3 /* outLen */
            iload 6 /* k */
            isub
        17: .line 772
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_EncryptFinal:(JJ[BII)I
            iadd
            istore 6 /* k */
        18: .line 774
            iconst_0
            istore 5 /* doCancel */
        19: .line 775
            goto 41
        20: .line 777
      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 805
            aload 0 /* this */
            iload 5 /* doCancel */
            invokevirtual sun.security.pkcs11.P11Cipher.reset:(Z)V
        22: .line 778
            iconst_0
            ireturn
        23: .line 780
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            ifnull 37
        24: .line 781
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            ifeq 29
        25: .line 782
            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 783
            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 784
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            arraylength
        28: .line 782
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptUpdate:(JJ[BIIJ[BII)I
            istore 6 /* k */
        29: .line 786
      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 787
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            arraylength
            iload 6 /* k */
            isub
        31: .line 786
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptFinal:(JJ[BII)I
            iadd
            istore 6 /* k */
        32: .line 788
            iconst_0
            istore 5 /* doCancel */
        33: .line 790
            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 791
            iload 6 /* k */
            iload 7 /* actualPadLen */
            isub
            istore 6 /* k */
        35: .line 792
            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 793
            goto 41
        37: .line 794
      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 795
            iload 3 /* outLen */
        39: .line 794
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptFinal:(JJ[BII)I
            istore 6 /* k */
        40: .line 796
            iconst_0
            istore 5 /* doCancel */
        41: .line 799
      StackMap locals:
      StackMap stack:
            iload 6 /* k */
            istore 9
        42: .line 805
            aload 0 /* this */
            iload 5 /* doCancel */
            invokevirtual sun.security.pkcs11.P11Cipher.reset:(Z)V
        43: .line 799
            iload 9
            ireturn
        end local 6 // int k
        44: .line 800
      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 801
            iconst_0
            istore 5 /* doCancel */
        46: .line 802
            aload 0 /* this */
            aload 6 /* e */
            invokevirtual sun.security.pkcs11.P11Cipher.handleException:(Lsun/security/pkcs11/wrapper/PKCS11Exception;)V
        47: .line 803
            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 804
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 8
        49: .line 805
            aload 0 /* this */
            iload 5 /* doCancel */
            invokevirtual sun.security.pkcs11.P11Cipher.reset:(Z)V
        50: .line 806
            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 812
            aload 1 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 2 /* outLen */
        start local 2 // int outLen
         1: .line 813
            aload 0 /* this */
            iconst_0
            invokevirtual sun.security.pkcs11.P11Cipher.doFinalLength:(I)I
            istore 3 /* requiredOutLen */
        start local 3 // int requiredOutLen
         2: .line 814
            iload 2 /* outLen */
            iload 3 /* requiredOutLen */
            if_icmpge 4
         3: .line 815
            new javax.crypto.ShortBufferException
            dup
            invokespecial javax.crypto.ShortBufferException.<init>:()V
            athrow
         4: .line 818
      StackMap locals: int int
      StackMap stack:
            iconst_1
            istore 4 /* doCancel */
        start local 4 // boolean doCancel
         5: .line 820
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11Cipher.ensureInitialized:()V
         6: .line 822
            lconst_0
            lstore 5 /* outAddr */
        start local 5 // long outAddr
         7: .line 823
            aconst_null
            astore 7 /* outArray */
        start local 7 // byte[] outArray
         8: .line 824
            iconst_0
            istore 8 /* outOfs */
        start local 8 // int outOfs
         9: .line 825
            aload 1 /* outBuffer */
            instanceof sun.nio.ch.DirectBuffer
            ifeq 13
        10: .line 826
            aload 1 /* outBuffer */
            checkcast sun.nio.ch.DirectBuffer
            invokeinterface sun.nio.ch.DirectBuffer.address:()J
            lstore 5 /* outAddr */
        11: .line 827
            aload 1 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 8 /* outOfs */
        12: .line 828
            goto 18
        13: .line 829
      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 830
            aload 1 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.array:()[B
            astore 7 /* outArray */
        15: .line 831
            aload 1 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            aload 1 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            iadd
            istore 8 /* outOfs */
        16: .line 832
            goto 18
        17: .line 833
      StackMap locals:
      StackMap stack:
            iload 2 /* outLen */
            newarray 8
            astore 7 /* outArray */
        18: .line 837
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 9 /* k */
        start local 9 // int k
        19: .line 839
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.encrypt:Z
            ifeq 33
        20: .line 840
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            ifnull 28
        21: .line 841
            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 842
            iload 3 /* requiredOutLen */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
            isub
        23: .line 841
            invokeinterface sun.security.pkcs11.P11Cipher$Padding.setPaddingBytes:([BI)I
            istore 10 /* actualPadLen */
        start local 10 // int actualPadLen
        24: .line 843
            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 844
            lconst_0
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            iconst_0
            iload 10 /* actualPadLen */
        26: .line 845
            lload 5 /* outAddr */
            aload 7 /* outArray */
            iload 8 /* outOfs */
            iload 2 /* outLen */
        27: .line 843
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_EncryptUpdate:(JJ[BIIJ[BII)I
            istore 9 /* k */
        end local 10 // int actualPadLen
        28: .line 847
      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 848
            lload 5 /* outAddr */
            aload 7 /* outArray */
            iload 8 /* outOfs */
            iload 9 /* k */
            iadd
            iload 2 /* outLen */
            iload 9 /* k */
            isub
        30: .line 847
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_EncryptFinal:(JJ[BII)I
            iadd
            istore 9 /* k */
        31: .line 849
            iconst_0
            istore 4 /* doCancel */
        32: .line 850
            goto 56
        33: .line 852
      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 890
            aload 0 /* this */
            iload 4 /* doCancel */
            invokevirtual sun.security.pkcs11.P11Cipher.reset:(Z)V
        35: .line 853
            iconst_0
            ireturn
        36: .line 856
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.paddingObj:Lsun/security/pkcs11/P11Cipher$Padding;
            ifnull 52
        37: .line 857
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            ifeq 43
        38: .line 858
            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 859
            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 860
            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 858
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptUpdate:(JJ[BIIJ[BII)I
            istore 9 /* k */
        42: .line 861
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11Cipher.padBufferLen:I
        43: .line 863
      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 864
            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 863
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptFinal:(JJ[BII)I
            iadd
            istore 9 /* k */
        46: .line 865
            iconst_0
            istore 4 /* doCancel */
        47: .line 867
            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 868
            iload 9 /* k */
            iload 10 /* actualPadLen */
            isub
            istore 9 /* k */
        49: .line 869
            aload 0 /* this */
            getfield sun.security.pkcs11.P11Cipher.padBuffer:[B
            astore 7 /* outArray */
        50: .line 870
            iconst_0
            istore 8 /* outOfs */
        end local 10 // int actualPadLen
        51: .line 871
            goto 56
        52: .line 872
      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 873
            lload 5 /* outAddr */
            aload 7 /* outArray */
            iload 8 /* outOfs */
            iload 2 /* outLen */
        54: .line 872
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptFinal:(JJ[BII)I
            istore 9 /* k */
        55: .line 874
            iconst_0
            istore 4 /* doCancel */
        56: .line 877
      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 878
      StackMap locals:
      StackMap stack:
            aload 1 /* outBuffer */
            instanceof sun.nio.ch.DirectBuffer
            ifne 61
        58: .line 879
            aload 1 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifne 61
        59: .line 880
      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 881
            goto 62
        61: .line 882
      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 884
      StackMap locals:
      StackMap stack:
            iload 9 /* k */
            istore 12
        63: .line 890
            aload 0 /* this */
            iload 4 /* doCancel */
            invokevirtual sun.security.pkcs11.P11Cipher.reset:(Z)V
        64: .line 884
            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 885
      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 886
            iconst_0
            istore 4 /* doCancel */
        67: .line 887
            aload 0 /* this */
            aload 5 /* e */
            invokevirtual sun.security.pkcs11.P11Cipher.handleException:(Lsun/security/pkcs11/wrapper/PKCS11Exception;)V
        68: .line 888
            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 889
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 11
        70: .line 890
            aload 0 /* this */
            iload 4 /* doCancel */
            invokevirtual sun.security.pkcs11.P11Cipher.reset:(Z)V
        71: .line 891
            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 896
            aload 1 /* e */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11Exception.getErrorCode:()J
            lstore 2 /* errorCode */
        start local 2 // long errorCode
         1: .line 897
            lload 2 /* errorCode */
            ldc 336
            lcmp
            ifne 4
         2: .line 899
            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 898
            checkcast javax.crypto.ShortBufferException
            athrow
         4: .line 900
      StackMap locals: long
      StackMap stack:
            lload 2 /* errorCode */
            ldc 33
            lcmp
            ifeq 6
         5: .line 901
            lload 2 /* errorCode */
            ldc 65
            lcmp
            ifne 8
         6: .line 903
      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 902
            checkcast javax.crypto.IllegalBlockSizeException
            athrow
         8: .line 905
      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 911
            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 919
            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 926
            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 925
            invokestatic sun.security.pkcs11.P11SecretKeyFactory.convertKey:(Lsun/security/pkcs11/Token;Ljava/security/Key;Ljava/lang/String;)Lsun/security/pkcs11/P11Key;
         2: .line 926
            invokevirtual sun.security.pkcs11.P11Key.length:()I
         3: .line 925
            istore 2 /* n */
        start local 2 // int n
         4: .line 927
            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 931
            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 932
            aload 0 /* this */
            dup
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            iload 3 /* len */
            iadd
            putfield sun.security.pkcs11.P11Cipher.padBufferLen:I
         2: .line 933
            aload 0 /* this */
            dup
            getfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
            iload 3 /* len */
            iadd
            putfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
         3: .line 934
            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 937
            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 938
            aload 0 /* this */
            dup
            getfield sun.security.pkcs11.P11Cipher.padBufferLen:I
            iload 2 /* len */
            iadd
            putfield sun.security.pkcs11.P11Cipher.padBufferLen:I
         2: .line 939
            aload 0 /* this */
            dup
            getfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
            iload 2 /* len */
            iadd
            putfield sun.security.pkcs11.P11Cipher.bytesBuffered:I
         3: .line 940
            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