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

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

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

  private static final java.lang.String ALGO;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "AES"

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

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

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

  private final int fixedKeySize;
    descriptor: I
    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 byte[] iv;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

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

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

  private java.io.ByteArrayOutputStream dataBuffer;
    descriptor: Ljava/io/ByteArrayOutputStream;
    flags: (0x0002) ACC_PRIVATE

  private java.io.ByteArrayOutputStream aadBuffer;
    descriptor: Ljava/io/ByteArrayOutputStream;
    flags: (0x0002) ACC_PRIVATE

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

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

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

  private byte[] lastEncIv;
    descriptor: [B
    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=5, locals=7, args_size=4
        start local 0 // sun.security.pkcs11.P11AEADCipher this
        start local 1 // sun.security.pkcs11.Token token
        start local 2 // java.lang.String algorithm
        start local 3 // long mechanism
         0: .line 109
            aload 0 /* this */
            invokespecial javax.crypto.CipherSpi.<init>:()V
         1: .line 81
            aload 0 /* this */
            aconst_null
            putfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
         2: .line 84
            aload 0 /* this */
            aconst_null
            putfield sun.security.pkcs11.P11AEADCipher.p11Key:Lsun/security/pkcs11/P11Key;
         3: .line 87
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11AEADCipher.initialized:Z
         4: .line 90
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11AEADCipher.encrypt:Z
         5: .line 93
            aload 0 /* this */
            aconst_null
            putfield sun.security.pkcs11.P11AEADCipher.iv:[B
         6: .line 94
            aload 0 /* this */
            iconst_m1
            putfield sun.security.pkcs11.P11AEADCipher.tagLen:I
         7: .line 95
            aload 0 /* this */
            invokestatic sun.security.jca.JCAUtil.getSecureRandom:()Ljava/security/SecureRandom;
            putfield sun.security.pkcs11.P11AEADCipher.random:Ljava/security/SecureRandom;
         8: .line 98
            aload 0 /* this */
            new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
            putfield sun.security.pkcs11.P11AEADCipher.dataBuffer:Ljava/io/ByteArrayOutputStream;
         9: .line 100
            aload 0 /* this */
            new java.io.ByteArrayOutputStream
            dup
            invokespecial java.io.ByteArrayOutputStream.<init>:()V
            putfield sun.security.pkcs11.P11AEADCipher.aadBuffer:Ljava/io/ByteArrayOutputStream;
        10: .line 101
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11AEADCipher.updateCalled:Z
        11: .line 103
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11AEADCipher.requireReinit:Z
        12: .line 104
            aload 0 /* this */
            aconst_null
            putfield sun.security.pkcs11.P11AEADCipher.lastEncKey:Lsun/security/pkcs11/P11Key;
        13: .line 105
            aload 0 /* this */
            aconst_null
            putfield sun.security.pkcs11.P11AEADCipher.lastEncIv:[B
        14: .line 110
            aload 0 /* this */
            aload 1 /* token */
            putfield sun.security.pkcs11.P11AEADCipher.token:Lsun/security/pkcs11/Token;
        15: .line 111
            aload 0 /* this */
            lload 3 /* mechanism */
            putfield sun.security.pkcs11.P11AEADCipher.mechanism:J
        16: .line 113
            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
        17: .line 114
            aload 5 /* algoParts */
            arraylength
            iconst_3
            if_icmpeq 21
        18: .line 115
            new java.security.ProviderException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unsupported Transformation format: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        19: .line 116
            aload 2 /* algorithm */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        20: .line 115
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
        21: .line 118
      StackMap locals: sun.security.pkcs11.P11AEADCipher sun.security.pkcs11.Token java.lang.String long java.lang.String[]
      StackMap stack:
            aload 5 /* algoParts */
            iconst_0
            aaload
            ldc "AES"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifne 23
        22: .line 119
            new java.security.ProviderException
            dup
            ldc "Only support AES for AEAD cipher mode"
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
        23: .line 121
      StackMap locals:
      StackMap stack:
            aload 5 /* algoParts */
            iconst_0
            aaload
            bipush 95
            invokevirtual java.lang.String.indexOf:(I)I
            istore 6 /* index */
        start local 6 // int index
        24: .line 122
            iload 6 /* index */
            iconst_m1
            if_icmpeq 27
        25: .line 124
            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
            iconst_3
            ishr
            putfield sun.security.pkcs11.P11AEADCipher.fixedKeySize:I
        26: .line 125
            goto 28
        27: .line 126
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iconst_m1
            putfield sun.security.pkcs11.P11AEADCipher.fixedKeySize:I
        28: .line 128
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            aload 5 /* algoParts */
            iconst_1
            aaload
            invokevirtual sun.security.pkcs11.P11AEADCipher.parseMode:(Ljava/lang/String;)I
            putfield sun.security.pkcs11.P11AEADCipher.blockMode:I
        29: .line 129
            aload 5 /* algoParts */
            iconst_2
            aaload
            ldc "NoPadding"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 31
        30: .line 130
            new java.security.ProviderException
            dup
            ldc "Only NoPadding is supported for AEAD cipher mode"
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
        31: .line 132
      StackMap locals:
      StackMap stack:
            return
        end local 6 // int index
        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.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   32     0       this  Lsun/security/pkcs11/P11AEADCipher;
            0   32     1      token  Lsun/security/pkcs11/Token;
            0   32     2  algorithm  Ljava/lang/String;
            0   32     3  mechanism  J
           17   32     5  algoParts  [Ljava/lang/String;
           24   32     6      index  I
    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.P11AEADCipher this
        start local 1 // java.lang.String mode
         0: .line 137
            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.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/pkcs11/P11AEADCipher;
            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.P11AEADCipher this
        start local 1 // java.lang.String mode
         0: .line 141
            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 143
            aload 1 /* mode */
            ldc "GCM"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
         2: .line 144
            bipush 10
            istore 2 /* result */
        start local 2 // int result
         3: .line 145
            goto 5
        end local 2 // int result
         4: .line 146
      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
         5: .line 148
      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.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lsun/security/pkcs11/P11AEADCipher;
            0    6     1    mode  Ljava/lang/String;
            3    4     2  result  I
            5    6     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.P11AEADCipher this
        start local 1 // java.lang.String padding
         0: .line 156
            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
        end local 1 // java.lang.String padding
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lsun/security/pkcs11/P11AEADCipher;
            0    1     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.P11AEADCipher this
         0: .line 161
            bipush 16
            ireturn
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/pkcs11/P11AEADCipher;

  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.P11AEADCipher this
        start local 1 // int inputLen
         0: .line 166
            aload 0 /* this */
            iload 1 /* inputLen */
            invokevirtual sun.security.pkcs11.P11AEADCipher.doFinalLength:(I)I
            ireturn
        end local 1 // int inputLen
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lsun/security/pkcs11/P11AEADCipher;
            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.P11AEADCipher this
         0: .line 171
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.iv:[B
            ifnonnull 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.iv:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
      StackMap locals:
      StackMap stack: byte[]
         2: areturn
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/security/pkcs11/P11AEADCipher;

  protected java.security.AlgorithmParameters engineGetParameters();
    descriptor: ()Ljava/security/AlgorithmParameters;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // sun.security.pkcs11.P11AEADCipher this
         0: .line 176
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.encrypt:Z
            ifeq 7
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.iv:[B
            ifnonnull 7
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.tagLen:I
            iconst_m1
            if_icmpne 7
         1: .line 177
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.blockMode:I
            tableswitch { // 10 - 10
                   10: 2
              default: 5
          }
         2: .line 179
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 16
            newarray 8
            putfield sun.security.pkcs11.P11AEADCipher.iv:[B
         3: .line 180
            aload 0 /* this */
            bipush 16
            putfield sun.security.pkcs11.P11AEADCipher.tagLen:I
         4: .line 181
            goto 6
         5: .line 183
      StackMap locals:
      StackMap stack:
            new java.security.ProviderException
            dup
            ldc "Unsupported mode"
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 185
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.random:Ljava/security/SecureRandom;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.iv:[B
            invokevirtual java.security.SecureRandom.nextBytes:([B)V
         7: .line 190
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.blockMode:I
            tableswitch { // 10 - 10
                   10: 8
              default: 11
          }
         8: .line 192
      StackMap locals:
      StackMap stack:
            ldc "GCM"
            astore 2 /* apAlgo */
        start local 2 // java.lang.String apAlgo
         9: .line 193
            new javax.crypto.spec.GCMParameterSpec
            dup
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.tagLen:I
            iconst_3
            ishl
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.iv:[B
            invokespecial javax.crypto.spec.GCMParameterSpec.<init>:(I[B)V
            astore 1 /* spec */
        start local 1 // java.security.spec.AlgorithmParameterSpec spec
        10: .line 194
            goto 12
        end local 2 // java.lang.String apAlgo
        end local 1 // java.security.spec.AlgorithmParameterSpec spec
        11: .line 196
      StackMap locals:
      StackMap stack:
            new java.security.ProviderException
            dup
            ldc "Unsupported mode"
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
        start local 1 // java.security.spec.AlgorithmParameterSpec spec
        start local 2 // java.lang.String apAlgo
        12: .line 199
      StackMap locals: java.security.spec.AlgorithmParameterSpec java.lang.String
      StackMap stack:
            aload 2 /* apAlgo */
            invokestatic java.security.AlgorithmParameters.getInstance:(Ljava/lang/String;)Ljava/security/AlgorithmParameters;
        13: .line 198
            astore 3 /* params */
        start local 3 // java.security.AlgorithmParameters params
        14: .line 200
            aload 3 /* params */
            aload 1 /* spec */
            invokevirtual java.security.AlgorithmParameters.init:(Ljava/security/spec/AlgorithmParameterSpec;)V
        15: .line 201
            aload 3 /* params */
        16: areturn
        end local 3 // java.security.AlgorithmParameters params
        end local 2 // java.lang.String apAlgo
        end local 1 // java.security.spec.AlgorithmParameterSpec spec
        17: .line 202
      StackMap locals: sun.security.pkcs11.P11AEADCipher
      StackMap stack: java.security.GeneralSecurityException
            astore 1 /* e */
        start local 1 // java.security.GeneralSecurityException e
        18: .line 205
            new java.security.ProviderException
            dup
            ldc "Could not encode parameters"
            aload 1 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.security.GeneralSecurityException e
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   19     0    this  Lsun/security/pkcs11/P11AEADCipher;
           10   11     1    spec  Ljava/security/spec/AlgorithmParameterSpec;
           12   17     1    spec  Ljava/security/spec/AlgorithmParameterSpec;
            9   11     2  apAlgo  Ljava/lang/String;
           12   17     2  apAlgo  Ljava/lang/String;
           14   17     3  params  Ljava/security/AlgorithmParameters;
           18   19     1       e  Ljava/security/GeneralSecurityException;
      Exception table:
        from    to  target  type
           7    16      17  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=6, locals=5, args_size=4
        start local 0 // sun.security.pkcs11.P11AEADCipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // java.security.SecureRandom sr
         0: .line 212
            iload 1 /* opmode */
            iconst_2
            if_icmpne 2
         1: .line 213
            new java.security.InvalidKeyException
            dup
            ldc "Parameters required for decryption"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 215
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11AEADCipher.updateCalled:Z
         3: .line 217
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            aconst_null
            iconst_m1
            aload 3 /* sr */
            invokevirtual sun.security.pkcs11.P11AEADCipher.implInit:(ILjava/security/Key;[BILjava/security/SecureRandom;)V
         4: .line 218
            goto 7
      StackMap locals:
      StackMap stack: java.security.InvalidAlgorithmParameterException
         5: astore 4 /* e */
        start local 4 // java.security.InvalidAlgorithmParameterException e
         6: .line 219
            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
         7: .line 221
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.security.SecureRandom sr
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lsun/security/pkcs11/P11AEADCipher;
            0    8     1  opmode  I
            0    8     2     key  Ljava/security/Key;
            0    8     3      sr  Ljava/security/SecureRandom;
            6    7     4       e  Ljava/security/InvalidAlgorithmParameterException;
      Exception table:
        from    to  target  type
           3     4       5  Class java.security.InvalidAlgorithmParameterException
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      sr      

  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=6, locals=7, args_size=5
        start local 0 // sun.security.pkcs11.P11AEADCipher 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 sr
         0: .line 227
            iload 1 /* opmode */
            iconst_2
            if_icmpne 4
            aload 3 /* params */
            ifnonnull 4
         1: .line 228
            new java.security.InvalidAlgorithmParameterException
            dup
         2: .line 229
            ldc "Parameters required for decryption"
         3: .line 228
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 231
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11AEADCipher.updateCalled:Z
         5: .line 232
            aconst_null
            astore 5 /* ivValue */
        start local 5 // byte[] ivValue
         6: .line 233
            iconst_m1
            istore 6 /* tagLen */
        start local 6 // int tagLen
         7: .line 234
            aload 3 /* params */
            ifnull 17
         8: .line 235
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.blockMode:I
            tableswitch { // 10 - 10
                   10: 9
              default: 16
          }
         9: .line 237
      StackMap locals: byte[] int
      StackMap stack:
            aload 3 /* params */
            instanceof javax.crypto.spec.GCMParameterSpec
            ifne 13
        10: .line 238
            new java.security.InvalidAlgorithmParameterException
            dup
        11: .line 239
            ldc "Only GCMParameterSpec is supported"
        12: .line 238
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        13: .line 241
      StackMap locals:
      StackMap stack:
            aload 3 /* params */
            checkcast javax.crypto.spec.GCMParameterSpec
            invokevirtual javax.crypto.spec.GCMParameterSpec.getIV:()[B
            astore 5 /* ivValue */
        14: .line 242
            aload 3 /* params */
            checkcast javax.crypto.spec.GCMParameterSpec
            invokevirtual javax.crypto.spec.GCMParameterSpec.getTLen:()I
            iconst_3
            ishr
            istore 6 /* tagLen */
        15: .line 243
            goto 17
        16: .line 245
      StackMap locals:
      StackMap stack:
            new java.security.ProviderException
            dup
            ldc "Unsupported mode"
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
        17: .line 248
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            aload 5 /* ivValue */
            iload 6 /* tagLen */
            aload 4 /* sr */
            invokevirtual sun.security.pkcs11.P11AEADCipher.implInit:(ILjava/security/Key;[BILjava/security/SecureRandom;)V
        18: .line 249
            return
        end local 6 // int tagLen
        end local 5 // byte[] ivValue
        end local 4 // java.security.SecureRandom sr
        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.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   19     0     this  Lsun/security/pkcs11/P11AEADCipher;
            0   19     1   opmode  I
            0   19     2      key  Ljava/security/Key;
            0   19     3   params  Ljava/security/spec/AlgorithmParameterSpec;
            0   19     4       sr  Ljava/security/SecureRandom;
            6   19     5  ivValue  [B
            7   19     6   tagLen  I
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      params  
      sr      

  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=6, args_size=5
        start local 0 // sun.security.pkcs11.P11AEADCipher 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 sr
         0: .line 255
            iload 1 /* opmode */
            iconst_2
            if_icmpne 4
            aload 3 /* params */
            ifnonnull 4
         1: .line 256
            new java.security.InvalidAlgorithmParameterException
            dup
         2: .line 257
            ldc "Parameters required for decryption"
         3: .line 256
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 259
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11AEADCipher.updateCalled:Z
         5: .line 261
            aconst_null
            astore 5 /* paramSpec */
        start local 5 // java.security.spec.AlgorithmParameterSpec paramSpec
         6: .line 262
            aload 3 /* params */
            ifnull 12
         7: .line 263
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.blockMode:I
            tableswitch { // 10 - 10
                   10: 8
              default: 11
          }
         8: .line 266
      StackMap locals: java.security.spec.AlgorithmParameterSpec
      StackMap stack:
            aload 3 /* params */
            ldc Ljavax/crypto/spec/GCMParameterSpec;
            invokevirtual java.security.AlgorithmParameters.getParameterSpec:(Ljava/lang/Class;)Ljava/security/spec/AlgorithmParameterSpec;
         9: .line 265
            astore 5 /* paramSpec */
        10: .line 267
            goto 12
        11: .line 269
      StackMap locals:
      StackMap stack:
            new java.security.ProviderException
            dup
            ldc "Unsupported mode"
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 272
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opmode */
            aload 2 /* key */
            aload 5 /* paramSpec */
            aload 4 /* sr */
            invokevirtual sun.security.pkcs11.P11AEADCipher.engineInit:(ILjava/security/Key;Ljava/security/spec/AlgorithmParameterSpec;Ljava/security/SecureRandom;)V
        end local 5 // java.security.spec.AlgorithmParameterSpec paramSpec
        13: .line 273
            goto 16
      StackMap locals: sun.security.pkcs11.P11AEADCipher int java.security.Key java.security.AlgorithmParameters java.security.SecureRandom
      StackMap stack: java.security.spec.InvalidParameterSpecException
        14: astore 5 /* ex */
        start local 5 // java.security.spec.InvalidParameterSpecException ex
        15: .line 274
            new java.security.InvalidAlgorithmParameterException
            dup
            aload 5 /* ex */
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.security.spec.InvalidParameterSpecException ex
        16: .line 276
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.security.SecureRandom sr
        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.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   17     0       this  Lsun/security/pkcs11/P11AEADCipher;
            0   17     1     opmode  I
            0   17     2        key  Ljava/security/Key;
            0   17     3     params  Ljava/security/AlgorithmParameters;
            0   17     4         sr  Ljava/security/SecureRandom;
            6   13     5  paramSpec  Ljava/security/spec/AlgorithmParameterSpec;
           15   16     5         ex  Ljava/security/spec/InvalidParameterSpecException;
      Exception table:
        from    to  target  type
           5    13      14  Class java.security.spec.InvalidParameterSpecException
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      params  
      sr      

  private void implInit(int, java.security.Key, byte[], int, java.security.SecureRandom);
    descriptor: (ILjava/security/Key;[BILjava/security/SecureRandom;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=6
        start local 0 // sun.security.pkcs11.P11AEADCipher this
        start local 1 // int opmode
        start local 2 // java.security.Key key
        start local 3 // byte[] iv
        start local 4 // int tagLen
        start local 5 // java.security.SecureRandom sr
         0: .line 282
            aload 0 /* this */
            iconst_1
            invokevirtual sun.security.pkcs11.P11AEADCipher.reset:(Z)V
         1: .line 283
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.fixedKeySize:I
            iconst_m1
            if_icmpeq 3
            aload 2 /* key */
            invokeinterface java.security.Key.getEncoded:()[B
            arraylength
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.fixedKeySize:I
            if_icmpeq 3
         2: .line 284
            new java.security.InvalidKeyException
            dup
            ldc "Key size is invalid"
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 286
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.token:Lsun/security/pkcs11/Token;
            aload 2 /* key */
            ldc "AES"
            invokestatic sun.security.pkcs11.P11SecretKeyFactory.convertKey:(Lsun/security/pkcs11/Token;Ljava/security/Key;Ljava/lang/String;)Lsun/security/pkcs11/P11Key;
            astore 6 /* newKey */
        start local 6 // sun.security.pkcs11.P11Key newKey
         4: .line 287
            iload 1 /* opmode */
            tableswitch { // 1 - 2
                    1: 5
                    2: 14
              default: 17
          }
         5: .line 289
      StackMap locals: sun.security.pkcs11.P11Key
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11AEADCipher.encrypt:Z
         6: .line 290
            aload 0 /* this */
            aload 3 /* iv */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.lastEncIv:[B
            invokestatic java.util.Arrays.equals:([B[B)Z
            ifeq 8
         7: .line 291
            aload 6 /* newKey */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.lastEncKey:Lsun/security/pkcs11/P11Key;
            if_acmpne 8
            iconst_1
            goto 9
      StackMap locals:
      StackMap stack: sun.security.pkcs11.P11AEADCipher
         8: iconst_0
         9: .line 290
      StackMap locals: sun.security.pkcs11.P11AEADCipher int java.security.Key byte[] int java.security.SecureRandom sun.security.pkcs11.P11Key
      StackMap stack: sun.security.pkcs11.P11AEADCipher int
            putfield sun.security.pkcs11.P11AEADCipher.requireReinit:Z
        10: .line 292
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.requireReinit:Z
            ifeq 20
        11: .line 293
            new java.security.InvalidAlgorithmParameterException
            dup
        12: .line 294
            ldc "Cannot reuse iv for GCM encryption"
        13: .line 293
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        14: .line 298
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11AEADCipher.encrypt:Z
        15: .line 299
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11AEADCipher.requireReinit:Z
        16: .line 300
            goto 20
        17: .line 302
      StackMap locals:
      StackMap stack:
            new java.security.InvalidAlgorithmParameterException
            dup
        18: .line 303
            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;
        19: .line 302
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 307
      StackMap locals:
      StackMap stack:
            aload 5 /* sr */
            ifnull 22
        21: .line 308
            aload 0 /* this */
            aload 5 /* sr */
            putfield sun.security.pkcs11.P11AEADCipher.random:Ljava/security/SecureRandom;
        22: .line 310
      StackMap locals:
      StackMap stack:
            aload 3 /* iv */
            ifnonnull 29
            iload 4 /* tagLen */
            iconst_m1
            if_icmpne 29
        23: .line 312
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.blockMode:I
            tableswitch { // 10 - 10
                   10: 24
              default: 28
          }
        24: .line 314
      StackMap locals:
      StackMap stack:
            bipush 16
            newarray 8
            astore 3 /* iv */
        25: .line 315
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.random:Ljava/security/SecureRandom;
            aload 3 /* iv */
            invokevirtual java.security.SecureRandom.nextBytes:([B)V
        26: .line 316
            bipush 16
            istore 4 /* tagLen */
        27: .line 317
            goto 29
        28: .line 319
      StackMap locals:
      StackMap stack:
            new java.security.ProviderException
            dup
            ldc "Unsupported mode"
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
        29: .line 322
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* iv */
            putfield sun.security.pkcs11.P11AEADCipher.iv:[B
        30: .line 323
            aload 0 /* this */
            iload 4 /* tagLen */
            putfield sun.security.pkcs11.P11AEADCipher.tagLen:I
        31: .line 324
            aload 0 /* this */
            aload 6 /* newKey */
            putfield sun.security.pkcs11.P11AEADCipher.p11Key:Lsun/security/pkcs11/P11Key;
        32: .line 326
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11AEADCipher.initialize:()V
        33: .line 327
            goto 38
      StackMap locals:
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
        34: astore 7 /* e */
        start local 7 // sun.security.pkcs11.wrapper.PKCS11Exception e
        35: .line 328
            aload 7 /* e */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11Exception.getErrorCode:()J
            ldc 113
            lcmp
            ifne 37
        36: .line 329
            new java.security.InvalidAlgorithmParameterException
            dup
            ldc "Bad params"
            aload 7 /* e */
            invokespecial java.security.InvalidAlgorithmParameterException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        37: .line 331
      StackMap locals: sun.security.pkcs11.wrapper.PKCS11Exception
      StackMap stack:
            new java.security.InvalidKeyException
            dup
            ldc "Could not initialize cipher"
            aload 7 /* e */
            invokespecial java.security.InvalidKeyException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 7 // sun.security.pkcs11.wrapper.PKCS11Exception e
        38: .line 333
      StackMap locals:
      StackMap stack:
            return
        end local 6 // sun.security.pkcs11.P11Key newKey
        end local 5 // java.security.SecureRandom sr
        end local 4 // int tagLen
        end local 3 // byte[] iv
        end local 2 // java.security.Key key
        end local 1 // int opmode
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   39     0    this  Lsun/security/pkcs11/P11AEADCipher;
            0   39     1  opmode  I
            0   39     2     key  Ljava/security/Key;
            0   39     3      iv  [B
            0   39     4  tagLen  I
            0   39     5      sr  Ljava/security/SecureRandom;
            4   39     6  newKey  Lsun/security/pkcs11/P11Key;
           35   38     7       e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
          32    33      34  Class sun.security.pkcs11.wrapper.PKCS11Exception
    Exceptions:
      throws java.security.InvalidKeyException, java.security.InvalidAlgorithmParameterException
    MethodParameters:
        Name  Flags
      opmode  
      key     
      iv      
      tagLen  
      sr      

  private void cancelOperation();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=13, locals=6, args_size=1
        start local 0 // sun.security.pkcs11.P11AEADCipher this
         0: .line 338
            aload 0 /* this */
            iconst_0
            invokevirtual sun.security.pkcs11.P11AEADCipher.doFinalLength:(I)I
            istore 1 /* bufLen */
        start local 1 // int bufLen
         1: .line 339
            iload 1 /* bufLen */
            newarray 8
            astore 2 /* buffer */
        start local 2 // byte[] buffer
         2: .line 340
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.dataBuffer:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            astore 3 /* in */
        start local 3 // byte[] in
         3: .line 341
            aload 3 /* in */
            arraylength
            istore 4 /* inLen */
        start local 4 // int inLen
         4: .line 343
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.encrypt:Z
            ifeq 9
         5: .line 344
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lconst_0
            aload 3 /* in */
            iconst_0
            iload 4 /* inLen */
         6: .line 345
            lconst_0
            aload 2 /* buffer */
            iconst_0
            iload 1 /* bufLen */
         7: .line 344
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_Encrypt:(JJ[BIIJ[BII)I
            pop
         8: .line 346
            goto 16
         9: .line 347
      StackMap locals: sun.security.pkcs11.P11AEADCipher int byte[] byte[] int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lconst_0
            aload 3 /* in */
            iconst_0
            iload 4 /* inLen */
        10: .line 348
            lconst_0
            aload 2 /* buffer */
            iconst_0
            iload 1 /* bufLen */
        11: .line 347
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_Decrypt:(JJ[BIIJ[BII)I
            pop
        12: .line 350
            goto 16
      StackMap locals:
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
        13: astore 5 /* e */
        start local 5 // sun.security.pkcs11.wrapper.PKCS11Exception e
        14: .line 351
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.encrypt:Z
            ifeq 16
        15: .line 352
            new java.security.ProviderException
            dup
            ldc "Cancel 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
        16: .line 356
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int inLen
        end local 3 // byte[] in
        end local 2 // byte[] buffer
        end local 1 // int bufLen
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   17     0    this  Lsun/security/pkcs11/P11AEADCipher;
            1   17     1  bufLen  I
            2   17     2  buffer  [B
            3   17     3      in  [B
            4   17     4   inLen  I
           14   16     5       e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           4    12      13  Class sun.security.pkcs11.wrapper.PKCS11Exception

  private void ensureInitialized();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.security.pkcs11.P11AEADCipher this
         0: .line 359
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.initialized:Z
            ifeq 2
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.aadBuffer:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.size:()I
            ifle 2
         1: .line 361
            aload 0 /* this */
            iconst_1
            invokevirtual sun.security.pkcs11.P11AEADCipher.reset:(Z)V
         2: .line 363
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.initialized:Z
            ifne 4
         3: .line 364
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11AEADCipher.initialize:()V
         4: .line 366
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/pkcs11/P11AEADCipher;
    Exceptions:
      throws sun.security.pkcs11.wrapper.PKCS11Exception

  private void initialize();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=9, locals=6, args_size=1
        start local 0 // sun.security.pkcs11.P11AEADCipher this
         0: .line 369
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.p11Key:Lsun/security/pkcs11/P11Key;
            ifnonnull 4
         1: .line 370
            new java.security.ProviderException
            dup
         2: .line 371
            ldc "Operation cannot be performed without calling engineInit first"
         3: .line 370
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 374
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.requireReinit:Z
            ifeq 8
         5: .line 375
            new java.lang.IllegalStateException
            dup
         6: .line 376
            ldc "Must use either different key or iv for GCM encryption"
         7: .line 375
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 379
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.ensureValid:()V
         9: .line 381
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.aadBuffer:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.size:()I
            ifle 10
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.aadBuffer:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            goto 11
      StackMap locals:
      StackMap stack:
        10: aconst_null
      StackMap locals:
      StackMap stack: byte[]
        11: astore 1 /* aad */
        start local 1 // byte[] aad
        12: .line 383
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.getKeyID:()J
            lstore 2 /* p11KeyID */
        start local 2 // long p11KeyID
        13: .line 386
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.blockMode:I
            tableswitch { // 10 - 10
                   10: 14
              default: 18
          }
        14: .line 388
      StackMap locals: byte[] long
      StackMap stack:
            new sun.security.pkcs11.wrapper.CK_MECHANISM
            dup
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.mechanism:J
        15: .line 389
            new sun.security.pkcs11.wrapper.CK_GCM_PARAMS
            dup
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.tagLen:I
            iconst_3
            ishl
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.iv:[B
            aload 1 /* aad */
            invokespecial sun.security.pkcs11.wrapper.CK_GCM_PARAMS.<init>:(I[B[B)V
        16: .line 388
            invokespecial sun.security.pkcs11.wrapper.CK_MECHANISM.<init>:(JLsun/security/pkcs11/wrapper/CK_GCM_PARAMS;)V
            astore 4 /* mechWithParams */
        start local 4 // sun.security.pkcs11.wrapper.CK_MECHANISM mechWithParams
        17: .line 390
            goto 19
        end local 4 // sun.security.pkcs11.wrapper.CK_MECHANISM mechWithParams
        18: .line 392
      StackMap locals:
      StackMap stack:
            new java.security.ProviderException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unsupported mode: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.blockMode:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
        start local 4 // sun.security.pkcs11.wrapper.CK_MECHANISM mechWithParams
        19: .line 394
      StackMap locals: sun.security.pkcs11.wrapper.CK_MECHANISM
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
            ifnonnull 21
        20: .line 395
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.token:Lsun/security/pkcs11/Token;
            invokevirtual sun.security.pkcs11.Token.getOpSession:()Lsun/security/pkcs11/Session;
            putfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
        21: .line 397
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.encrypt:Z
            ifeq 26
        22: .line 398
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            aload 4 /* mechWithParams */
        23: .line 399
            lload 2 /* p11KeyID */
        24: .line 398
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_EncryptInit:(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J)V
        25: .line 400
            goto 38
        26: .line 401
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            aload 4 /* mechWithParams */
        27: .line 402
            lload 2 /* p11KeyID */
        28: .line 401
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_DecryptInit:(JLsun/security/pkcs11/wrapper/CK_MECHANISM;J)V
        end local 4 // sun.security.pkcs11.wrapper.CK_MECHANISM mechWithParams
        29: .line 404
            goto 38
      StackMap locals: sun.security.pkcs11.P11AEADCipher byte[] long
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
        30: astore 4 /* e */
        start local 4 // sun.security.pkcs11.wrapper.PKCS11Exception e
        31: .line 405
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        32: .line 406
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.token:Lsun/security/pkcs11/Token;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            putfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
        33: .line 407
            aload 4 /* e */
            athrow
        end local 4 // sun.security.pkcs11.wrapper.PKCS11Exception e
        34: .line 408
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 5
        35: .line 409
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.dataBuffer:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.reset:()V
        36: .line 410
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.aadBuffer:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.reset:()V
        37: .line 411
            aload 5
            athrow
        38: .line 409
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.dataBuffer:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.reset:()V
        39: .line 410
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.aadBuffer:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.reset:()V
        40: .line 412
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11AEADCipher.initialized:Z
        41: .line 413
            return
        end local 2 // long p11KeyID
        end local 1 // byte[] aad
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   42     0            this  Lsun/security/pkcs11/P11AEADCipher;
           12   42     1             aad  [B
           13   42     2        p11KeyID  J
           17   18     4  mechWithParams  Lsun/security/pkcs11/wrapper/CK_MECHANISM;
           19   29     4  mechWithParams  Lsun/security/pkcs11/wrapper/CK_MECHANISM;
           31   34     4               e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
          13    29      30  Class sun.security.pkcs11.wrapper.PKCS11Exception
          13    34      34  any
    Exceptions:
      throws sun.security.pkcs11.wrapper.PKCS11Exception

  private int doFinalLength(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.security.pkcs11.P11AEADCipher this
        start local 1 // int inLen
         0: .line 417
            iload 1 /* inLen */
            ifge 2
         1: .line 418
            new java.security.ProviderException
            dup
            ldc "Invalid negative input length"
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 421
      StackMap locals:
      StackMap stack:
            iload 1 /* inLen */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.dataBuffer:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.size:()I
            iadd
            istore 2 /* result */
        start local 2 // int result
         3: .line 422
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.encrypt:Z
            ifeq 5
         4: .line 423
            iload 2 /* result */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.tagLen:I
            iadd
            istore 2 /* result */
         5: .line 428
      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.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lsun/security/pkcs11/P11AEADCipher;
            0    6     1   inLen  I
            3    6     2  result  I
    MethodParameters:
       Name  Flags
      inLen  

  private void reset(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.security.pkcs11.P11AEADCipher this
        start local 1 // boolean doCancel
         0: .line 433
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.initialized:Z
            ifne 2
         1: .line 434
            return
         2: .line 436
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11AEADCipher.initialized:Z
         3: .line 439
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
            ifnonnull 8
         4: .line 447
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
         5: .line 448
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.token:Lsun/security/pkcs11/Token;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            putfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
         6: .line 449
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.dataBuffer:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.reset:()V
         7: .line 440
            return
         8: .line 443
      StackMap locals:
      StackMap stack:
            iload 1 /* doCancel */
            ifeq 16
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.explicitCancel:Z
            ifeq 16
         9: .line 444
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11AEADCipher.cancelOperation:()V
        10: .line 446
            goto 16
      StackMap locals:
      StackMap stack: java.lang.Throwable
        11: astore 2
        12: .line 447
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        13: .line 448
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.token:Lsun/security/pkcs11/Token;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            putfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
        14: .line 449
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.dataBuffer:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.reset:()V
        15: .line 450
            aload 2
            athrow
        16: .line 447
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.p11Key:Lsun/security/pkcs11/P11Key;
            invokevirtual sun.security.pkcs11.P11Key.releaseKeyID:()V
        17: .line 448
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.token:Lsun/security/pkcs11/Token;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Token.releaseSession:(Lsun/security/pkcs11/Session;)Lsun/security/pkcs11/Session;
            putfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
        18: .line 449
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.dataBuffer:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.reset:()V
        19: .line 451
            return
        end local 1 // boolean doCancel
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   20     0      this  Lsun/security/pkcs11/P11AEADCipher;
            0   20     1  doCancel  Z
      Exception table:
        from    to  target  type
           3     4      11  any
           8    11      11  any
    MethodParameters:
          Name  Flags
      doCancel  

  protected byte[] engineUpdate(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // sun.security.pkcs11.P11AEADCipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
         0: .line 455
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11AEADCipher.updateCalled:Z
         1: .line 456
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            invokevirtual sun.security.pkcs11.P11AEADCipher.implUpdate:([BII)I
            pop
         2: .line 457
            iconst_0
            newarray 8
            areturn
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lsun/security/pkcs11/P11AEADCipher;
            0    3     1     in  [B
            0    3     2  inOfs  I
            0    3     3  inLen  I
    MethodParameters:
       Name  Flags
      in     
      inOfs  
      inLen  

  protected int engineUpdate(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=6, args_size=6
        start local 0 // sun.security.pkcs11.P11AEADCipher 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 463
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11AEADCipher.updateCalled:Z
         1: .line 464
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            invokevirtual sun.security.pkcs11.P11AEADCipher.implUpdate:([BII)I
            pop
         2: .line 465
            iconst_0
            ireturn
        end local 5 // int outOfs
        end local 4 // byte[] out
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lsun/security/pkcs11/P11AEADCipher;
            0    3     1      in  [B
            0    3     2   inOfs  I
            0    3     3   inLen  I
            0    3     4     out  [B
            0    3     5  outOfs  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=2, locals=3, args_size=3
        start local 0 // sun.security.pkcs11.P11AEADCipher this
        start local 1 // java.nio.ByteBuffer inBuffer
        start local 2 // java.nio.ByteBuffer outBuffer
         0: .line 472
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11AEADCipher.updateCalled:Z
         1: .line 473
            aload 0 /* this */
            aload 1 /* inBuffer */
            invokevirtual sun.security.pkcs11.P11AEADCipher.implUpdate:(Ljava/nio/ByteBuffer;)I
            pop
         2: .line 474
            iconst_0
            ireturn
        end local 2 // java.nio.ByteBuffer outBuffer
        end local 1 // java.nio.ByteBuffer inBuffer
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lsun/security/pkcs11/P11AEADCipher;
            0    3     1   inBuffer  Ljava/nio/ByteBuffer;
            0    3     2  outBuffer  Ljava/nio/ByteBuffer;
    Exceptions:
      throws javax.crypto.ShortBufferException
    MethodParameters:
           Name  Flags
      inBuffer   
      outBuffer  

  protected synchronized void engineUpdateAAD(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // sun.security.pkcs11.P11AEADCipher this
        start local 1 // byte[] src
        start local 2 // int srcOfs
        start local 3 // int srcLen
         0: .line 481
            aload 1 /* src */
            ifnull 1
            iload 2 /* srcOfs */
            iflt 1
            iload 2 /* srcOfs */
            iload 3 /* srcLen */
            iadd
            aload 1 /* src */
            arraylength
            if_icmple 2
         1: .line 482
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Invalid AAD"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 484
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.requireReinit:Z
            ifeq 6
         3: .line 485
            new java.lang.IllegalStateException
            dup
         4: .line 486
            ldc "Must use either different key or iv for GCM encryption"
         5: .line 485
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 488
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.p11Key:Lsun/security/pkcs11/P11Key;
            ifnonnull 8
         7: .line 489
            new java.lang.IllegalStateException
            dup
            ldc "Need to initialize Cipher first"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 491
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.updateCalled:Z
            ifeq 12
         9: .line 492
            new java.lang.IllegalStateException
            dup
        10: .line 493
            ldc "Update has been called; no more AAD data"
        11: .line 492
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 495
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.aadBuffer:Ljava/io/ByteArrayOutputStream;
            aload 1 /* src */
            iload 2 /* srcOfs */
            iload 3 /* srcLen */
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
        13: .line 496
            return
        end local 3 // int srcLen
        end local 2 // int srcOfs
        end local 1 // byte[] src
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Lsun/security/pkcs11/P11AEADCipher;
            0   14     1     src  [B
            0   14     2  srcOfs  I
            0   14     3  srcLen  I
    Exceptions:
      throws java.lang.IllegalStateException
    MethodParameters:
        Name  Flags
      src     
      srcOfs  
      srcLen  

  protected void engineUpdateAAD(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // sun.security.pkcs11.P11AEADCipher this
        start local 1 // java.nio.ByteBuffer src
         0: .line 502
            aload 1 /* src */
            ifnonnull 2
         1: .line 503
            new java.lang.IllegalArgumentException
            dup
            ldc "Invalid AAD"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 505
      StackMap locals:
      StackMap stack:
            aload 1 /* src */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            newarray 8
            astore 2 /* srcBytes */
        start local 2 // byte[] srcBytes
         3: .line 506
            aload 1 /* src */
            aload 2 /* srcBytes */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
         4: .line 507
            aload 0 /* this */
            aload 2 /* srcBytes */
            iconst_0
            aload 2 /* srcBytes */
            arraylength
            invokevirtual sun.security.pkcs11.P11AEADCipher.engineUpdateAAD:([BII)V
         5: .line 508
            return
        end local 2 // byte[] srcBytes
        end local 1 // java.nio.ByteBuffer src
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lsun/security/pkcs11/P11AEADCipher;
            0    6     1       src  Ljava/nio/ByteBuffer;
            3    6     2  srcBytes  [B
    Exceptions:
      throws java.lang.IllegalStateException
    MethodParameters:
      Name  Flags
      src   

  protected byte[] engineDoFinal(byte[], int, int);
    descriptor: ([BII)[B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=9, args_size=4
        start local 0 // sun.security.pkcs11.P11AEADCipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
         0: .line 513
            aload 0 /* this */
            iload 3 /* inLen */
            invokevirtual sun.security.pkcs11.P11AEADCipher.doFinalLength:(I)I
            istore 4 /* minOutLen */
        start local 4 // int minOutLen
         1: .line 515
            iload 4 /* minOutLen */
            newarray 8
            astore 5 /* out */
        start local 5 // byte[] out
         2: .line 516
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            aload 5 /* out */
            iconst_0
            invokevirtual sun.security.pkcs11.P11AEADCipher.engineDoFinal:([BII[BI)I
            istore 6 /* n */
        start local 6 // int n
         3: .line 517
            aload 5 /* out */
            iconst_0
            iload 6 /* n */
            invokestatic sun.security.pkcs11.P11Util.convert:([BII)[B
            astore 8
         4: .line 522
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11AEADCipher.updateCalled:Z
         5: .line 517
            aload 8
            areturn
        end local 6 // int n
        end local 5 // byte[] out
         6: .line 518
      StackMap locals: sun.security.pkcs11.P11AEADCipher byte[] int int int
      StackMap stack: javax.crypto.ShortBufferException
            astore 5 /* e */
        start local 5 // javax.crypto.ShortBufferException e
         7: .line 520
            new java.security.ProviderException
            dup
            aload 5 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 5 // javax.crypto.ShortBufferException e
         8: .line 521
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 7
         9: .line 522
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11AEADCipher.updateCalled:Z
        10: .line 523
            aload 7
            athrow
        end local 4 // int minOutLen
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   11     0       this  Lsun/security/pkcs11/P11AEADCipher;
            0   11     1         in  [B
            0   11     2      inOfs  I
            0   11     3      inLen  I
            1   11     4  minOutLen  I
            2    6     5        out  [B
            3    6     6          n  I
            7    8     5          e  Ljavax/crypto/ShortBufferException;
      Exception table:
        from    to  target  type
           1     4       6  Class javax.crypto.ShortBufferException
           1     4       8  any
           6     8       8  any
    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=8, locals=8, args_size=6
        start local 0 // sun.security.pkcs11.P11AEADCipher 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 530
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            aload 4 /* out */
            iload 5 /* outOfs */
            aload 4 /* out */
            arraylength
            iload 5 /* outOfs */
            isub
            invokevirtual sun.security.pkcs11.P11AEADCipher.implDoFinal:([BII[BII)I
            istore 7
         1: .line 532
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11AEADCipher.updateCalled:Z
         2: .line 530
            iload 7
            ireturn
         3: .line 531
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 6
         4: .line 532
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11AEADCipher.updateCalled:Z
         5: .line 533
            aload 6
            athrow
        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.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lsun/security/pkcs11/P11AEADCipher;
            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
      Exception table:
        from    to  target  type
           0     1       3  any
    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=5, args_size=3
        start local 0 // sun.security.pkcs11.P11AEADCipher this
        start local 1 // java.nio.ByteBuffer inBuffer
        start local 2 // java.nio.ByteBuffer outBuffer
         0: .line 542
            aload 0 /* this */
            aload 1 /* inBuffer */
            aload 2 /* outBuffer */
            invokevirtual sun.security.pkcs11.P11AEADCipher.implDoFinal:(Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
            istore 4
         1: .line 544
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11AEADCipher.updateCalled:Z
         2: .line 542
            iload 4
            ireturn
         3: .line 543
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 3
         4: .line 544
            aload 0 /* this */
            iconst_0
            putfield sun.security.pkcs11.P11AEADCipher.updateCalled:Z
         5: .line 545
            aload 3
            athrow
        end local 2 // java.nio.ByteBuffer outBuffer
        end local 1 // java.nio.ByteBuffer inBuffer
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lsun/security/pkcs11/P11AEADCipher;
            0    6     1   inBuffer  Ljava/nio/ByteBuffer;
            0    6     2  outBuffer  Ljava/nio/ByteBuffer;
      Exception table:
        from    to  target  type
           0     1       3  any
    Exceptions:
      throws javax.crypto.ShortBufferException, javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    MethodParameters:
           Name  Flags
      inBuffer   
      outBuffer  

  private int implUpdate(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // sun.security.pkcs11.P11AEADCipher this
        start local 1 // byte[] in
        start local 2 // int inOfs
        start local 3 // int inLen
         0: .line 549
            iload 3 /* inLen */
            ifle 8
         1: .line 550
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11AEADCipher.updateCalled:Z
         2: .line 552
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11AEADCipher.ensureInitialized:()V
         3: .line 553
            goto 7
      StackMap locals:
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
         4: astore 4 /* e */
        start local 4 // sun.security.pkcs11.wrapper.PKCS11Exception e
         5: .line 555
            aload 0 /* this */
            iconst_0
            invokevirtual sun.security.pkcs11.P11AEADCipher.reset:(Z)V
         6: .line 556
            new java.security.ProviderException
            dup
            ldc "update() failed"
            aload 4 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 4 // sun.security.pkcs11.wrapper.PKCS11Exception e
         7: .line 558
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.dataBuffer:Ljava/io/ByteArrayOutputStream;
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
         8: .line 561
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // int inLen
        end local 2 // int inOfs
        end local 1 // byte[] in
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lsun/security/pkcs11/P11AEADCipher;
            0    9     1     in  [B
            0    9     2  inOfs  I
            0    9     3  inLen  I
            5    7     4      e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           2     3       4  Class sun.security.pkcs11.wrapper.PKCS11Exception
    MethodParameters:
       Name  Flags
      in     
      inOfs  
      inLen  

  private int implUpdate(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // sun.security.pkcs11.P11AEADCipher this
        start local 1 // java.nio.ByteBuffer inBuf
         0: .line 565
            aload 1 /* inBuf */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 2 /* inLen */
        start local 2 // int inLen
         1: .line 566
            iload 2 /* inLen */
            ifle 10
         2: .line 568
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11AEADCipher.ensureInitialized:()V
         3: .line 569
            goto 7
      StackMap locals: sun.security.pkcs11.P11AEADCipher java.nio.ByteBuffer int
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
         4: astore 3 /* e */
        start local 3 // sun.security.pkcs11.wrapper.PKCS11Exception e
         5: .line 570
            aload 0 /* this */
            iconst_0
            invokevirtual sun.security.pkcs11.P11AEADCipher.reset:(Z)V
         6: .line 571
            new java.security.ProviderException
            dup
            ldc "update() failed"
            aload 3 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 3 // sun.security.pkcs11.wrapper.PKCS11Exception e
         7: .line 573
      StackMap locals:
      StackMap stack:
            iload 2 /* inLen */
            newarray 8
            astore 3 /* data */
        start local 3 // byte[] data
         8: .line 574
            aload 1 /* inBuf */
            aload 3 /* data */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
         9: .line 575
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.dataBuffer:Ljava/io/ByteArrayOutputStream;
            aload 3 /* data */
            iconst_0
            aload 3 /* data */
            arraylength
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
        end local 3 // byte[] data
        10: .line 578
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // int inLen
        end local 1 // java.nio.ByteBuffer inBuf
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lsun/security/pkcs11/P11AEADCipher;
            0   11     1  inBuf  Ljava/nio/ByteBuffer;
            1   11     2  inLen  I
            5    7     3      e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
            8   10     3   data  [B
      Exception table:
        from    to  target  type
           2     3       4  Class sun.security.pkcs11.wrapper.PKCS11Exception
    MethodParameters:
       Name  Flags
      inBuf  

  private int implDoFinal(byte[], int, int, byte[], int, int);
    descriptor: ([BII[BII)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=13, locals=12, args_size=7
        start local 0 // sun.security.pkcs11.P11AEADCipher 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 585
            aload 0 /* this */
            iload 3 /* inLen */
            invokevirtual sun.security.pkcs11.P11AEADCipher.doFinalLength:(I)I
            istore 7 /* requiredOutLen */
        start local 7 // int requiredOutLen
         1: .line 586
            iload 6 /* outLen */
            iload 7 /* requiredOutLen */
            if_icmpge 3
         2: .line 587
            new javax.crypto.ShortBufferException
            dup
            invokespecial javax.crypto.ShortBufferException.<init>:()V
            athrow
         3: .line 589
      StackMap locals: int
      StackMap stack:
            iconst_1
            istore 8 /* doCancel */
        start local 8 // boolean doCancel
         4: .line 591
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11AEADCipher.ensureInitialized:()V
         5: .line 592
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.dataBuffer:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.size:()I
            ifle 12
         6: .line 593
            aload 1 /* in */
            ifnull 9
            iload 2 /* inOfs */
            ifle 9
            iload 3 /* inLen */
            ifle 9
         7: .line 594
            iload 2 /* inOfs */
            aload 1 /* in */
            arraylength
            iload 3 /* inLen */
            isub
            if_icmpge 9
         8: .line 595
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.dataBuffer:Ljava/io/ByteArrayOutputStream;
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
         9: .line 597
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.dataBuffer:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            astore 1 /* in */
        10: .line 598
            iconst_0
            istore 2 /* inOfs */
        11: .line 599
            aload 1 /* in */
            arraylength
            istore 3 /* inLen */
        12: .line 601
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 9 /* k */
        start local 9 // int k
        13: .line 602
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.encrypt:Z
            ifeq 19
        14: .line 603
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lconst_0
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
        15: .line 604
            lconst_0
            aload 4 /* out */
            iload 5 /* outOfs */
            iload 6 /* outLen */
        16: .line 603
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_Encrypt:(JJ[BIIJ[BII)I
            istore 9 /* k */
        17: .line 605
            iconst_0
            istore 8 /* doCancel */
        18: .line 606
            goto 30
        19: .line 608
      StackMap locals: int
      StackMap stack:
            iload 3 /* inLen */
            ifne 26
        20: .line 621
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.encrypt:Z
            ifeq 24
        21: .line 622
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.p11Key:Lsun/security/pkcs11/P11Key;
            putfield sun.security.pkcs11.P11AEADCipher.lastEncKey:Lsun/security/pkcs11/P11Key;
        22: .line 623
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.iv:[B
            putfield sun.security.pkcs11.P11AEADCipher.lastEncIv:[B
        23: .line 624
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11AEADCipher.requireReinit:Z
        24: .line 626
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 8 /* doCancel */
            invokevirtual sun.security.pkcs11.P11AEADCipher.reset:(Z)V
        25: .line 609
            iconst_0
            ireturn
        26: .line 611
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lconst_0
            aload 1 /* in */
            iload 2 /* inOfs */
            iload 3 /* inLen */
        27: .line 612
            lconst_0
            aload 4 /* out */
            iload 5 /* outOfs */
            iload 6 /* outLen */
        28: .line 611
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_Decrypt:(JJ[BIIJ[BII)I
            istore 9 /* k */
        29: .line 613
            iconst_0
            istore 8 /* doCancel */
        30: .line 615
      StackMap locals:
      StackMap stack:
            iload 9 /* k */
            istore 11
        31: .line 621
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.encrypt:Z
            ifeq 35
        32: .line 622
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.p11Key:Lsun/security/pkcs11/P11Key;
            putfield sun.security.pkcs11.P11AEADCipher.lastEncKey:Lsun/security/pkcs11/P11Key;
        33: .line 623
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.iv:[B
            putfield sun.security.pkcs11.P11AEADCipher.lastEncIv:[B
        34: .line 624
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11AEADCipher.requireReinit:Z
        35: .line 626
      StackMap locals: sun.security.pkcs11.P11AEADCipher byte[] int int byte[] int int int int int top int
      StackMap stack:
            aload 0 /* this */
            iload 8 /* doCancel */
            invokevirtual sun.security.pkcs11.P11AEADCipher.reset:(Z)V
        36: .line 615
            iload 11
            ireturn
        end local 9 // int k
        37: .line 616
      StackMap locals: sun.security.pkcs11.P11AEADCipher byte[] int int byte[] int int int int
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
            astore 9 /* e */
        start local 9 // sun.security.pkcs11.wrapper.PKCS11Exception e
        38: .line 617
            iconst_0
            istore 8 /* doCancel */
        39: .line 618
            aload 0 /* this */
            aload 9 /* e */
            invokevirtual sun.security.pkcs11.P11AEADCipher.handleException:(Lsun/security/pkcs11/wrapper/PKCS11Exception;)V
        40: .line 619
            new java.security.ProviderException
            dup
            ldc "doFinal() failed"
            aload 9 /* e */
            invokespecial java.security.ProviderException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 9 // sun.security.pkcs11.wrapper.PKCS11Exception e
        41: .line 620
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 10
        42: .line 621
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.encrypt:Z
            ifeq 46
        43: .line 622
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.p11Key:Lsun/security/pkcs11/P11Key;
            putfield sun.security.pkcs11.P11AEADCipher.lastEncKey:Lsun/security/pkcs11/P11Key;
        44: .line 623
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.iv:[B
            putfield sun.security.pkcs11.P11AEADCipher.lastEncIv:[B
        45: .line 624
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11AEADCipher.requireReinit:Z
        46: .line 626
      StackMap locals: sun.security.pkcs11.P11AEADCipher byte[] int int byte[] int int int int top java.lang.Throwable
      StackMap stack:
            aload 0 /* this */
            iload 8 /* doCancel */
            invokevirtual sun.security.pkcs11.P11AEADCipher.reset:(Z)V
        47: .line 627
            aload 10
            athrow
        end local 8 // boolean doCancel
        end local 7 // int requiredOutLen
        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.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   48     0            this  Lsun/security/pkcs11/P11AEADCipher;
            0   48     1              in  [B
            0   48     2           inOfs  I
            0   48     3           inLen  I
            0   48     4             out  [B
            0   48     5          outOfs  I
            0   48     6          outLen  I
            1   48     7  requiredOutLen  I
            4   48     8        doCancel  Z
           13   37     9               k  I
           38   41     9               e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           4    20      37  Class sun.security.pkcs11.wrapper.PKCS11Exception
          26    31      37  Class sun.security.pkcs11.wrapper.PKCS11Exception
           4    20      41  any
          26    31      41  any
          37    41      41  any
    Exceptions:
      throws javax.crypto.ShortBufferException, javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    MethodParameters:
        Name  Flags
      in      
      inOfs   
      inLen   
      out     
      outOfs  
      outLen  

  private int implDoFinal(java.nio.ByteBuffer, java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;Ljava/nio/ByteBuffer;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=13, locals=18, args_size=3
        start local 0 // sun.security.pkcs11.P11AEADCipher this
        start local 1 // java.nio.ByteBuffer inBuffer
        start local 2 // java.nio.ByteBuffer outBuffer
         0: .line 633
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 3 /* outLen */
        start local 3 // int outLen
         1: .line 634
            aload 1 /* inBuffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 4 /* inLen */
        start local 4 // int inLen
         2: .line 636
            aload 0 /* this */
            iload 4 /* inLen */
            invokevirtual sun.security.pkcs11.P11AEADCipher.doFinalLength:(I)I
            istore 5 /* requiredOutLen */
        start local 5 // int requiredOutLen
         3: .line 637
            iload 3 /* outLen */
            iload 5 /* requiredOutLen */
            if_icmpge 5
         4: .line 638
            new javax.crypto.ShortBufferException
            dup
            invokespecial javax.crypto.ShortBufferException.<init>:()V
            athrow
         5: .line 641
      StackMap locals: int int int
      StackMap stack:
            iconst_1
            istore 6 /* doCancel */
        start local 6 // boolean doCancel
         6: .line 643
            aload 0 /* this */
            invokevirtual sun.security.pkcs11.P11AEADCipher.ensureInitialized:()V
         7: .line 645
            lconst_0
            lstore 7 /* inAddr */
        start local 7 // long inAddr
         8: .line 646
            aconst_null
            astore 9 /* in */
        start local 9 // byte[] in
         9: .line 647
            iconst_0
            istore 10 /* inOfs */
        start local 10 // int inOfs
        10: .line 648
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.dataBuffer:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.size:()I
            ifle 19
        11: .line 649
            iload 4 /* inLen */
            ifle 15
        12: .line 650
            iload 4 /* inLen */
            newarray 8
            astore 11 /* temp */
        start local 11 // byte[] temp
        13: .line 651
            aload 1 /* inBuffer */
            aload 11 /* temp */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
        14: .line 652
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.dataBuffer:Ljava/io/ByteArrayOutputStream;
            aload 11 /* temp */
            iconst_0
            aload 11 /* temp */
            arraylength
            invokevirtual java.io.ByteArrayOutputStream.write:([BII)V
        end local 11 // byte[] temp
        15: .line 654
      StackMap locals: sun.security.pkcs11.P11AEADCipher java.nio.ByteBuffer java.nio.ByteBuffer int int int int long byte[] int
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.dataBuffer:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            astore 9 /* in */
        16: .line 655
            iconst_0
            istore 10 /* inOfs */
        17: .line 656
            aload 9 /* in */
            arraylength
            istore 4 /* inLen */
        18: .line 657
            goto 29
        19: .line 658
      StackMap locals:
      StackMap stack:
            aload 1 /* inBuffer */
            instanceof sun.nio.ch.DirectBuffer
            ifeq 23
        20: .line 659
            aload 1 /* inBuffer */
            checkcast sun.nio.ch.DirectBuffer
            invokeinterface sun.nio.ch.DirectBuffer.address:()J
            lstore 7 /* inAddr */
        21: .line 660
            aload 1 /* inBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 10 /* inOfs */
        22: .line 661
            goto 29
        23: .line 662
      StackMap locals:
      StackMap stack:
            aload 1 /* inBuffer */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifeq 27
        24: .line 663
            aload 1 /* inBuffer */
            invokevirtual java.nio.ByteBuffer.array:()[B
            astore 9 /* in */
        25: .line 664
            aload 1 /* inBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            aload 1 /* inBuffer */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            iadd
            istore 10 /* inOfs */
        26: .line 665
            goto 29
        27: .line 666
      StackMap locals:
      StackMap stack:
            iload 4 /* inLen */
            newarray 8
            astore 9 /* in */
        28: .line 667
            aload 1 /* inBuffer */
            aload 9 /* in */
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
        29: .line 671
      StackMap locals:
      StackMap stack:
            lconst_0
            lstore 11 /* outAddr */
        start local 11 // long outAddr
        30: .line 672
            aconst_null
            astore 13 /* outArray */
        start local 13 // byte[] outArray
        31: .line 673
            iconst_0
            istore 14 /* outOfs */
        start local 14 // int outOfs
        32: .line 674
            aload 2 /* outBuffer */
            instanceof sun.nio.ch.DirectBuffer
            ifeq 36
        33: .line 675
            aload 2 /* outBuffer */
            checkcast sun.nio.ch.DirectBuffer
            invokeinterface sun.nio.ch.DirectBuffer.address:()J
            lstore 11 /* outAddr */
        34: .line 676
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 14 /* outOfs */
        35: .line 677
            goto 41
        36: .line 678
      StackMap locals: long byte[] int
      StackMap stack:
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.hasArray:()Z
            ifeq 40
        37: .line 679
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.array:()[B
            astore 13 /* outArray */
        38: .line 680
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.arrayOffset:()I
            iadd
            istore 14 /* outOfs */
        39: .line 681
            goto 41
        40: .line 682
      StackMap locals:
      StackMap stack:
            iload 3 /* outLen */
            newarray 8
            astore 13 /* outArray */
        41: .line 686
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 15 /* k */
        start local 15 // int k
        42: .line 687
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.encrypt:Z
            ifeq 48
        43: .line 688
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lload 7 /* inAddr */
            aload 9 /* in */
            iload 10 /* inOfs */
            iload 4 /* inLen */
        44: .line 689
            lload 11 /* outAddr */
            aload 13 /* outArray */
            iload 14 /* outOfs */
            iload 3 /* outLen */
        45: .line 688
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_Encrypt:(JJ[BIIJ[BII)I
            istore 15 /* k */
        46: .line 690
            iconst_0
            istore 6 /* doCancel */
        47: .line 691
            goto 59
        48: .line 693
      StackMap locals: int
      StackMap stack:
            iload 4 /* inLen */
            ifne 55
        49: .line 707
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.encrypt:Z
            ifeq 53
        50: .line 708
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.p11Key:Lsun/security/pkcs11/P11Key;
            putfield sun.security.pkcs11.P11AEADCipher.lastEncKey:Lsun/security/pkcs11/P11Key;
        51: .line 709
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.iv:[B
            putfield sun.security.pkcs11.P11AEADCipher.lastEncIv:[B
        52: .line 710
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11AEADCipher.requireReinit:Z
        53: .line 712
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 6 /* doCancel */
            invokevirtual sun.security.pkcs11.P11AEADCipher.reset:(Z)V
        54: .line 694
            iconst_0
            ireturn
        55: .line 696
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.token:Lsun/security/pkcs11/Token;
            getfield sun.security.pkcs11.Token.p11:Lsun/security/pkcs11/wrapper/PKCS11;
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.session:Lsun/security/pkcs11/Session;
            invokevirtual sun.security.pkcs11.Session.id:()J
            lload 7 /* inAddr */
            aload 9 /* in */
            iload 10 /* inOfs */
            iload 4 /* inLen */
        56: .line 697
            lload 11 /* outAddr */
            aload 13 /* outArray */
            iload 14 /* outOfs */
            iload 3 /* outLen */
        57: .line 696
            invokevirtual sun.security.pkcs11.wrapper.PKCS11.C_Decrypt:(JJ[BIIJ[BII)I
            istore 15 /* k */
        58: .line 698
            iconst_0
            istore 6 /* doCancel */
        59: .line 700
      StackMap locals:
      StackMap stack:
            aload 2 /* outBuffer */
            aload 2 /* outBuffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 15 /* k */
            iadd
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
        60: .line 701
            iload 15 /* k */
            istore 17
        61: .line 707
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.encrypt:Z
            ifeq 65
        62: .line 708
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.p11Key:Lsun/security/pkcs11/P11Key;
            putfield sun.security.pkcs11.P11AEADCipher.lastEncKey:Lsun/security/pkcs11/P11Key;
        63: .line 709
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.iv:[B
            putfield sun.security.pkcs11.P11AEADCipher.lastEncIv:[B
        64: .line 710
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11AEADCipher.requireReinit:Z
        65: .line 712
      StackMap locals: sun.security.pkcs11.P11AEADCipher java.nio.ByteBuffer java.nio.ByteBuffer int int int int long byte[] int long byte[] int int top int
      StackMap stack:
            aload 0 /* this */
            iload 6 /* doCancel */
            invokevirtual sun.security.pkcs11.P11AEADCipher.reset:(Z)V
        66: .line 701
            iload 17
            ireturn
        end local 15 // int k
        end local 14 // int outOfs
        end local 13 // byte[] outArray
        end local 11 // long outAddr
        end local 10 // int inOfs
        end local 9 // byte[] in
        end local 7 // long inAddr
        67: .line 702
      StackMap locals: sun.security.pkcs11.P11AEADCipher java.nio.ByteBuffer java.nio.ByteBuffer int int int int
      StackMap stack: sun.security.pkcs11.wrapper.PKCS11Exception
            astore 7 /* e */
        start local 7 // sun.security.pkcs11.wrapper.PKCS11Exception e
        68: .line 703
            iconst_0
            istore 6 /* doCancel */
        69: .line 704
            aload 0 /* this */
            aload 7 /* e */
            invokevirtual sun.security.pkcs11.P11AEADCipher.handleException:(Lsun/security/pkcs11/wrapper/PKCS11Exception;)V
        70: .line 705
            new java.security.ProviderException
            dup
            ldc "doFinal() 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
        71: .line 706
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 16
        72: .line 707
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.encrypt:Z
            ifeq 76
        73: .line 708
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.p11Key:Lsun/security/pkcs11/P11Key;
            putfield sun.security.pkcs11.P11AEADCipher.lastEncKey:Lsun/security/pkcs11/P11Key;
        74: .line 709
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.iv:[B
            putfield sun.security.pkcs11.P11AEADCipher.lastEncIv:[B
        75: .line 710
            aload 0 /* this */
            iconst_1
            putfield sun.security.pkcs11.P11AEADCipher.requireReinit:Z
        76: .line 712
      StackMap locals: sun.security.pkcs11.P11AEADCipher java.nio.ByteBuffer java.nio.ByteBuffer int int int int top top top top top top top top top java.lang.Throwable
      StackMap stack:
            aload 0 /* this */
            iload 6 /* doCancel */
            invokevirtual sun.security.pkcs11.P11AEADCipher.reset:(Z)V
        77: .line 713
            aload 16
            athrow
        end local 6 // boolean doCancel
        end local 5 // int requiredOutLen
        end local 4 // int inLen
        end local 3 // int outLen
        end local 2 // java.nio.ByteBuffer outBuffer
        end local 1 // java.nio.ByteBuffer inBuffer
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   78     0            this  Lsun/security/pkcs11/P11AEADCipher;
            0   78     1        inBuffer  Ljava/nio/ByteBuffer;
            0   78     2       outBuffer  Ljava/nio/ByteBuffer;
            1   78     3          outLen  I
            2   78     4           inLen  I
            3   78     5  requiredOutLen  I
            6   78     6        doCancel  Z
            8   67     7          inAddr  J
            9   67     9              in  [B
           10   67    10           inOfs  I
           13   15    11            temp  [B
           30   67    11         outAddr  J
           31   67    13        outArray  [B
           32   67    14          outOfs  I
           42   67    15               k  I
           68   71     7               e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
      Exception table:
        from    to  target  type
           6    49      67  Class sun.security.pkcs11.wrapper.PKCS11Exception
          55    61      67  Class sun.security.pkcs11.wrapper.PKCS11Exception
           6    49      71  any
          55    61      71  any
          67    71      71  any
    Exceptions:
      throws javax.crypto.ShortBufferException, javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    MethodParameters:
           Name  Flags
      inBuffer   
      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.P11AEADCipher this
        start local 1 // sun.security.pkcs11.wrapper.PKCS11Exception e
         0: .line 719
            aload 1 /* e */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11Exception.getErrorCode:()J
            lstore 2 /* errorCode */
        start local 2 // long errorCode
         1: .line 720
            lload 2 /* errorCode */
            ldc 336
            lcmp
            ifne 4
         2: .line 722
            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 721
            checkcast javax.crypto.ShortBufferException
            athrow
         4: .line 723
      StackMap locals: long
      StackMap stack:
            lload 2 /* errorCode */
            ldc 33
            lcmp
            ifeq 6
         5: .line 724
            lload 2 /* errorCode */
            ldc 65
            lcmp
            ifne 8
         6: .line 726
      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 725
            checkcast javax.crypto.IllegalBlockSizeException
            athrow
         8: .line 727
      StackMap locals:
      StackMap stack:
            lload 2 /* errorCode */
            ldc 64
            lcmp
            ifeq 10
         9: .line 729
            lload 2 /* errorCode */
            ldc 5
            lcmp
            ifne 12
        10: .line 731
      StackMap locals:
      StackMap stack:
            new javax.crypto.BadPaddingException
            dup
            aload 1 /* e */
            invokevirtual sun.security.pkcs11.wrapper.PKCS11Exception.toString:()Ljava/lang/String;
            invokespecial javax.crypto.BadPaddingException.<init>:(Ljava/lang/String;)V
            aload 1 /* e */
            invokevirtual javax.crypto.BadPaddingException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
        11: .line 730
            checkcast javax.crypto.BadPaddingException
            athrow
        12: .line 733
      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.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0       this  Lsun/security/pkcs11/P11AEADCipher;
            0   13     1          e  Lsun/security/pkcs11/wrapper/PKCS11Exception;
            1   13     2  errorCode  J
    Exceptions:
      throws javax.crypto.ShortBufferException, javax.crypto.IllegalBlockSizeException, javax.crypto.BadPaddingException
    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.P11AEADCipher this
        start local 1 // java.security.Key key
         0: .line 739
            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.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/security/pkcs11/P11AEADCipher;
            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.P11AEADCipher this
        start local 1 // byte[] wrappedKey
        start local 2 // java.lang.String wrappedKeyAlgorithm
        start local 3 // int wrappedKeyType
         0: .line 747
            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.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    1     0                 this  Lsun/security/pkcs11/P11AEADCipher;
            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.P11AEADCipher this
        start local 1 // java.security.Key key
         0: .line 754
            aload 0 /* this */
            getfield sun.security.pkcs11.P11AEADCipher.token:Lsun/security/pkcs11/Token;
            aload 1 /* key */
            ldc "AES"
         1: .line 753
            invokestatic sun.security.pkcs11.P11SecretKeyFactory.convertKey:(Lsun/security/pkcs11/Token;Ljava/security/Key;Ljava/lang/String;)Lsun/security/pkcs11/P11Key;
         2: .line 754
            invokevirtual sun.security.pkcs11.P11Key.length:()I
         3: .line 753
            istore 2 /* n */
        start local 2 // int n
         4: .line 755
            iload 2 /* n */
            ireturn
        end local 2 // int n
        end local 1 // java.security.Key key
        end local 0 // sun.security.pkcs11.P11AEADCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/security/pkcs11/P11AEADCipher;
            0    5     1   key  Ljava/security/Key;
            4    5     2     n  I
    Exceptions:
      throws java.security.InvalidKeyException
    MethodParameters:
      Name  Flags
      key   
}
SourceFile: "P11AEADCipher.java"