public class org.bouncycastle.crypto.modes.EAXBlockCipher implements org.bouncycastle.crypto.modes.AEADBlockCipher
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bouncycastle.crypto.modes.EAXBlockCipher
  super_class: java.lang.Object
{
  private static final byte nTAG;
    descriptor: B
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private static final byte hTAG;
    descriptor: B
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private static final byte cTAG;
    descriptor: B
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  private org.bouncycastle.crypto.modes.SICBlockCipher cipher;
    descriptor: Lorg/bouncycastle/crypto/modes/SICBlockCipher;
    flags: (0x0002) ACC_PRIVATE

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

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

  private org.bouncycastle.crypto.Mac mac;
    descriptor: Lorg/bouncycastle/crypto/Mac;
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

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

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

  public void <init>(org.bouncycastle.crypto.BlockCipher);
    descriptor: (Lorg/bouncycastle/crypto/BlockCipher;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
        start local 1 // org.bouncycastle.crypto.BlockCipher cipher
         0: .line 56
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 58
            aload 0 /* this */
            aload 1 /* cipher */
            invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
            putfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
         2: .line 59
            aload 0 /* this */
            new org.bouncycastle.crypto.macs.CMac
            dup
            aload 1 /* cipher */
            invokespecial org.bouncycastle.crypto.macs.CMac.<init>:(Lorg/bouncycastle/crypto/BlockCipher;)V
            putfield org.bouncycastle.crypto.modes.EAXBlockCipher.mac:Lorg/bouncycastle/crypto/Mac;
         3: .line 60
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            newarray 8
            putfield org.bouncycastle.crypto.modes.EAXBlockCipher.macBlock:[B
         4: .line 61
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            iconst_2
            imul
            newarray 8
            putfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufBlock:[B
         5: .line 62
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.mac:Lorg/bouncycastle/crypto/Mac;
            invokeinterface org.bouncycastle.crypto.Mac.getMacSize:()I
            newarray 8
            putfield org.bouncycastle.crypto.modes.EAXBlockCipher.associatedTextMac:[B
         6: .line 63
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.mac:Lorg/bouncycastle/crypto/Mac;
            invokeinterface org.bouncycastle.crypto.Mac.getMacSize:()I
            newarray 8
            putfield org.bouncycastle.crypto.modes.EAXBlockCipher.nonceMac:[B
         7: .line 64
            aload 0 /* this */
            new org.bouncycastle.crypto.modes.SICBlockCipher
            dup
            aload 1 /* cipher */
            invokespecial org.bouncycastle.crypto.modes.SICBlockCipher.<init>:(Lorg/bouncycastle/crypto/BlockCipher;)V
            putfield org.bouncycastle.crypto.modes.EAXBlockCipher.cipher:Lorg/bouncycastle/crypto/modes/SICBlockCipher;
         8: .line 65
            return
        end local 1 // org.bouncycastle.crypto.BlockCipher cipher
        end local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/bouncycastle/crypto/modes/EAXBlockCipher;
            0    9     1  cipher  Lorg/bouncycastle/crypto/BlockCipher;
    MethodParameters:
        Name  Flags
      cipher  

  public java.lang.String getAlgorithmName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
         0: .line 69
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.cipher:Lorg/bouncycastle/crypto/modes/SICBlockCipher;
            invokevirtual org.bouncycastle.crypto.modes.SICBlockCipher.getUnderlyingCipher:()Lorg/bouncycastle/crypto/BlockCipher;
            invokeinterface org.bouncycastle.crypto.BlockCipher.getAlgorithmName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "/EAX"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/modes/EAXBlockCipher;

  public org.bouncycastle.crypto.BlockCipher getUnderlyingCipher();
    descriptor: ()Lorg/bouncycastle/crypto/BlockCipher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
         0: .line 74
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.cipher:Lorg/bouncycastle/crypto/modes/SICBlockCipher;
            invokevirtual org.bouncycastle.crypto.modes.SICBlockCipher.getUnderlyingCipher:()Lorg/bouncycastle/crypto/BlockCipher;
            areturn
        end local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/modes/EAXBlockCipher;

  public int getBlockSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
         0: .line 79
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.cipher:Lorg/bouncycastle/crypto/modes/SICBlockCipher;
            invokevirtual org.bouncycastle.crypto.modes.SICBlockCipher.getBlockSize:()I
            ireturn
        end local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/modes/EAXBlockCipher;

  public void init(boolean, org.bouncycastle.crypto.CipherParameters);
    descriptor: (ZLorg/bouncycastle/crypto/CipherParameters;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=3
        start local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
        start local 1 // boolean forEncryption
        start local 2 // org.bouncycastle.crypto.CipherParameters params
         0: .line 85
            aload 0 /* this */
            iload 1 /* forEncryption */
            putfield org.bouncycastle.crypto.modes.EAXBlockCipher.forEncryption:Z
         1: .line 90
            aload 2 /* params */
            instanceof org.bouncycastle.crypto.params.AEADParameters
            ifeq 8
         2: .line 92
            aload 2 /* params */
            checkcast org.bouncycastle.crypto.params.AEADParameters
            astore 6 /* param */
        start local 6 // org.bouncycastle.crypto.params.AEADParameters param
         3: .line 94
            aload 6 /* param */
            invokevirtual org.bouncycastle.crypto.params.AEADParameters.getNonce:()[B
            astore 3 /* nonce */
        start local 3 // byte[] nonce
         4: .line 95
            aload 6 /* param */
            invokevirtual org.bouncycastle.crypto.params.AEADParameters.getAssociatedText:()[B
            astore 4 /* associatedText */
        start local 4 // byte[] associatedText
         5: .line 96
            aload 0 /* this */
            aload 6 /* param */
            invokevirtual org.bouncycastle.crypto.params.AEADParameters.getMacSize:()I
            bipush 8
            idiv
            putfield org.bouncycastle.crypto.modes.EAXBlockCipher.macSize:I
         6: .line 97
            aload 6 /* param */
            invokevirtual org.bouncycastle.crypto.params.AEADParameters.getKey:()Lorg/bouncycastle/crypto/params/KeyParameter;
            astore 5 /* keyParam */
        end local 6 // org.bouncycastle.crypto.params.AEADParameters param
        start local 5 // org.bouncycastle.crypto.CipherParameters keyParam
         7: .line 98
            goto 16
        end local 5 // org.bouncycastle.crypto.CipherParameters keyParam
        end local 4 // byte[] associatedText
        end local 3 // byte[] nonce
         8: .line 99
      StackMap locals:
      StackMap stack:
            aload 2 /* params */
            instanceof org.bouncycastle.crypto.params.ParametersWithIV
            ifeq 15
         9: .line 101
            aload 2 /* params */
            checkcast org.bouncycastle.crypto.params.ParametersWithIV
            astore 6 /* param */
        start local 6 // org.bouncycastle.crypto.params.ParametersWithIV param
        10: .line 103
            aload 6 /* param */
            invokevirtual org.bouncycastle.crypto.params.ParametersWithIV.getIV:()[B
            astore 3 /* nonce */
        start local 3 // byte[] nonce
        11: .line 104
            iconst_0
            newarray 8
            astore 4 /* associatedText */
        start local 4 // byte[] associatedText
        12: .line 105
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.mac:Lorg/bouncycastle/crypto/Mac;
            invokeinterface org.bouncycastle.crypto.Mac.getMacSize:()I
            iconst_2
            idiv
            putfield org.bouncycastle.crypto.modes.EAXBlockCipher.macSize:I
        13: .line 106
            aload 6 /* param */
            invokevirtual org.bouncycastle.crypto.params.ParametersWithIV.getParameters:()Lorg/bouncycastle/crypto/CipherParameters;
            astore 5 /* keyParam */
        end local 6 // org.bouncycastle.crypto.params.ParametersWithIV param
        start local 5 // org.bouncycastle.crypto.CipherParameters keyParam
        14: .line 107
            goto 16
        end local 5 // org.bouncycastle.crypto.CipherParameters keyParam
        end local 4 // byte[] associatedText
        end local 3 // byte[] nonce
        15: .line 110
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "invalid parameters passed to EAX"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        start local 3 // byte[] nonce
        start local 4 // byte[] associatedText
        start local 5 // org.bouncycastle.crypto.CipherParameters keyParam
        16: .line 113
      StackMap locals: byte[] byte[] org.bouncycastle.crypto.CipherParameters
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            newarray 8
            astore 6 /* tag */
        start local 6 // byte[] tag
        17: .line 115
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.mac:Lorg/bouncycastle/crypto/Mac;
            aload 5 /* keyParam */
            invokeinterface org.bouncycastle.crypto.Mac.init:(Lorg/bouncycastle/crypto/CipherParameters;)V
        18: .line 116
            aload 6 /* tag */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            iconst_1
            isub
            iconst_1
            bastore
        19: .line 117
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.mac:Lorg/bouncycastle/crypto/Mac;
            aload 6 /* tag */
            iconst_0
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            invokeinterface org.bouncycastle.crypto.Mac.update:([BII)V
        20: .line 118
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.mac:Lorg/bouncycastle/crypto/Mac;
            aload 4 /* associatedText */
            iconst_0
            aload 4 /* associatedText */
            arraylength
            invokeinterface org.bouncycastle.crypto.Mac.update:([BII)V
        21: .line 119
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.mac:Lorg/bouncycastle/crypto/Mac;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.associatedTextMac:[B
            iconst_0
            invokeinterface org.bouncycastle.crypto.Mac.doFinal:([BI)I
            pop
        22: .line 121
            aload 6 /* tag */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            iconst_1
            isub
            iconst_0
            bastore
        23: .line 122
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.mac:Lorg/bouncycastle/crypto/Mac;
            aload 6 /* tag */
            iconst_0
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            invokeinterface org.bouncycastle.crypto.Mac.update:([BII)V
        24: .line 123
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.mac:Lorg/bouncycastle/crypto/Mac;
            aload 3 /* nonce */
            iconst_0
            aload 3 /* nonce */
            arraylength
            invokeinterface org.bouncycastle.crypto.Mac.update:([BII)V
        25: .line 124
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.mac:Lorg/bouncycastle/crypto/Mac;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.nonceMac:[B
            iconst_0
            invokeinterface org.bouncycastle.crypto.Mac.doFinal:([BI)I
            pop
        26: .line 126
            aload 6 /* tag */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            iconst_1
            isub
            iconst_2
            bastore
        27: .line 127
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.mac:Lorg/bouncycastle/crypto/Mac;
            aload 6 /* tag */
            iconst_0
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            invokeinterface org.bouncycastle.crypto.Mac.update:([BII)V
        28: .line 129
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.cipher:Lorg/bouncycastle/crypto/modes/SICBlockCipher;
            iconst_1
            new org.bouncycastle.crypto.params.ParametersWithIV
            dup
            aload 5 /* keyParam */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.nonceMac:[B
            invokespecial org.bouncycastle.crypto.params.ParametersWithIV.<init>:(Lorg/bouncycastle/crypto/CipherParameters;[B)V
            invokevirtual org.bouncycastle.crypto.modes.SICBlockCipher.init:(ZLorg/bouncycastle/crypto/CipherParameters;)V
        29: .line 130
            return
        end local 6 // byte[] tag
        end local 5 // org.bouncycastle.crypto.CipherParameters keyParam
        end local 4 // byte[] associatedText
        end local 3 // byte[] nonce
        end local 2 // org.bouncycastle.crypto.CipherParameters params
        end local 1 // boolean forEncryption
        end local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   30     0            this  Lorg/bouncycastle/crypto/modes/EAXBlockCipher;
            0   30     1   forEncryption  Z
            0   30     2          params  Lorg/bouncycastle/crypto/CipherParameters;
            4    8     3           nonce  [B
           11   15     3           nonce  [B
           16   30     3           nonce  [B
            5    8     4  associatedText  [B
           12   15     4  associatedText  [B
           16   30     4  associatedText  [B
            7    8     5        keyParam  Lorg/bouncycastle/crypto/CipherParameters;
           14   15     5        keyParam  Lorg/bouncycastle/crypto/CipherParameters;
           16   30     5        keyParam  Lorg/bouncycastle/crypto/CipherParameters;
            3    7     6           param  Lorg/bouncycastle/crypto/params/AEADParameters;
           10   14     6           param  Lorg/bouncycastle/crypto/params/ParametersWithIV;
           17   30     6             tag  [B
    Exceptions:
      throws java.lang.IllegalArgumentException
    MethodParameters:
               Name  Flags
      forEncryption  
      params         

  private void calculateMac();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
         0: .line 134
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            newarray 8
            astore 1 /* outC */
        start local 1 // byte[] outC
         1: .line 135
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.mac:Lorg/bouncycastle/crypto/Mac;
            aload 1 /* outC */
            iconst_0
            invokeinterface org.bouncycastle.crypto.Mac.doFinal:([BI)I
            pop
         2: .line 137
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 6
         4: .line 139
      StackMap locals: byte[] int
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.macBlock:[B
            iload 2 /* i */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.nonceMac:[B
            iload 2 /* i */
            baload
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.associatedTextMac:[B
            iload 2 /* i */
            baload
            ixor
            aload 1 /* outC */
            iload 2 /* i */
            baload
            ixor
            i2b
            bastore
         5: .line 137
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.macBlock:[B
            arraylength
            if_icmplt 4
        end local 2 // int i
         7: .line 141
            return
        end local 1 // byte[] outC
        end local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/bouncycastle/crypto/modes/EAXBlockCipher;
            1    8     1  outC  [B
            3    7     2     i  I

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
         0: .line 145
            aload 0 /* this */
            iconst_1
            invokevirtual org.bouncycastle.crypto.modes.EAXBlockCipher.reset:(Z)V
         1: .line 146
            return
        end local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/bouncycastle/crypto/modes/EAXBlockCipher;

  private void reset(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
        start local 1 // boolean clearMac
         0: .line 151
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.cipher:Lorg/bouncycastle/crypto/modes/SICBlockCipher;
            invokevirtual org.bouncycastle.crypto.modes.SICBlockCipher.reset:()V
         1: .line 152
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.mac:Lorg/bouncycastle/crypto/Mac;
            invokeinterface org.bouncycastle.crypto.Mac.reset:()V
         2: .line 154
            aload 0 /* this */
            iconst_0
            putfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufOff:I
         3: .line 155
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufBlock:[B
            iconst_0
            invokestatic org.bouncycastle.util.Arrays.fill:([BB)V
         4: .line 157
            iload 1 /* clearMac */
            ifeq 6
         5: .line 159
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.macBlock:[B
            iconst_0
            invokestatic org.bouncycastle.util.Arrays.fill:([BB)V
         6: .line 162
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            newarray 8
            astore 2 /* tag */
        start local 2 // byte[] tag
         7: .line 163
            aload 2 /* tag */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            iconst_1
            isub
            iconst_2
            bastore
         8: .line 164
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.mac:Lorg/bouncycastle/crypto/Mac;
            aload 2 /* tag */
            iconst_0
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            invokeinterface org.bouncycastle.crypto.Mac.update:([BII)V
         9: .line 165
            return
        end local 2 // byte[] tag
        end local 1 // boolean clearMac
        end local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lorg/bouncycastle/crypto/modes/EAXBlockCipher;
            0   10     1  clearMac  Z
            7   10     2       tag  [B
    MethodParameters:
          Name  Flags
      clearMac  

  public int processByte(byte, byte[], int);
    descriptor: (B[BI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
        start local 1 // byte in
        start local 2 // byte[] out
        start local 3 // int outOff
         0: .line 170
            aload 0 /* this */
            iload 1 /* in */
            aload 2 /* out */
            iload 3 /* outOff */
            invokevirtual org.bouncycastle.crypto.modes.EAXBlockCipher.process:(B[BI)I
            ireturn
        end local 3 // int outOff
        end local 2 // byte[] out
        end local 1 // byte in
        end local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/bouncycastle/crypto/modes/EAXBlockCipher;
            0    1     1      in  B
            0    1     2     out  [B
            0    1     3  outOff  I
    Exceptions:
      throws org.bouncycastle.crypto.DataLengthException
    MethodParameters:
        Name  Flags
      in      
      out     
      outOff  

  public int processBytes(byte[], int, int, byte[], int);
    descriptor: ([BII[BI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=6
        start local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
        start local 1 // byte[] in
        start local 2 // int inOff
        start local 3 // int len
        start local 4 // byte[] out
        start local 5 // int outOff
         0: .line 176
            iconst_0
            istore 6 /* resultLen */
        start local 6 // int resultLen
         1: .line 178
            iconst_0
            istore 7 /* i */
        start local 7 // int i
         2: goto 5
         3: .line 180
      StackMap locals: int int
      StackMap stack:
            iload 6 /* resultLen */
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOff */
            iload 7 /* i */
            iadd
            baload
            aload 4 /* out */
            iload 5 /* outOff */
            iload 6 /* resultLen */
            iadd
            invokevirtual org.bouncycastle.crypto.modes.EAXBlockCipher.process:(B[BI)I
            iadd
            istore 6 /* resultLen */
         4: .line 178
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 7 /* i */
            iload 3 /* len */
            if_icmpne 3
        end local 7 // int i
         6: .line 183
            iload 6 /* resultLen */
            ireturn
        end local 6 // int resultLen
        end local 5 // int outOff
        end local 4 // byte[] out
        end local 3 // int len
        end local 2 // int inOff
        end local 1 // byte[] in
        end local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/bouncycastle/crypto/modes/EAXBlockCipher;
            0    7     1         in  [B
            0    7     2      inOff  I
            0    7     3        len  I
            0    7     4        out  [B
            0    7     5     outOff  I
            1    7     6  resultLen  I
            2    6     7          i  I
    Exceptions:
      throws org.bouncycastle.crypto.DataLengthException
    MethodParameters:
        Name  Flags
      in      
      inOff   
      len     
      out     
      outOff  

  public int doFinal(byte[], int);
    descriptor: ([BI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=3
        start local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
        start local 1 // byte[] out
        start local 2 // int outOff
         0: .line 189
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufOff:I
            istore 3 /* extra */
        start local 3 // int extra
         1: .line 190
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufBlock:[B
            arraylength
            newarray 8
            astore 4 /* tmp */
        start local 4 // byte[] tmp
         2: .line 192
            aload 0 /* this */
            iconst_0
            putfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufOff:I
         3: .line 194
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.forEncryption:Z
            ifeq 12
         4: .line 196
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.cipher:Lorg/bouncycastle/crypto/modes/SICBlockCipher;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufBlock:[B
            iconst_0
            aload 4 /* tmp */
            iconst_0
            invokevirtual org.bouncycastle.crypto.modes.SICBlockCipher.processBlock:([BI[BI)I
            pop
         5: .line 197
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.cipher:Lorg/bouncycastle/crypto/modes/SICBlockCipher;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufBlock:[B
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            aload 4 /* tmp */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            invokevirtual org.bouncycastle.crypto.modes.SICBlockCipher.processBlock:([BI[BI)I
            pop
         6: .line 199
            aload 4 /* tmp */
            iconst_0
            aload 1 /* out */
            iload 2 /* outOff */
            iload 3 /* extra */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 201
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.mac:Lorg/bouncycastle/crypto/Mac;
            aload 4 /* tmp */
            iconst_0
            iload 3 /* extra */
            invokeinterface org.bouncycastle.crypto.Mac.update:([BII)V
         8: .line 203
            aload 0 /* this */
            invokevirtual org.bouncycastle.crypto.modes.EAXBlockCipher.calculateMac:()V
         9: .line 205
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.macBlock:[B
            iconst_0
            aload 1 /* out */
            iload 2 /* outOff */
            iload 3 /* extra */
            iadd
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.macSize:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 207
            aload 0 /* this */
            iconst_0
            invokevirtual org.bouncycastle.crypto.modes.EAXBlockCipher.reset:(Z)V
        11: .line 209
            iload 3 /* extra */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.macSize:I
            iadd
            ireturn
        12: .line 213
      StackMap locals: int byte[]
      StackMap stack:
            iload 3 /* extra */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.macSize:I
            if_icmple 17
        13: .line 215
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.mac:Lorg/bouncycastle/crypto/Mac;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufBlock:[B
            iconst_0
            iload 3 /* extra */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.macSize:I
            isub
            invokeinterface org.bouncycastle.crypto.Mac.update:([BII)V
        14: .line 217
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.cipher:Lorg/bouncycastle/crypto/modes/SICBlockCipher;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufBlock:[B
            iconst_0
            aload 4 /* tmp */
            iconst_0
            invokevirtual org.bouncycastle.crypto.modes.SICBlockCipher.processBlock:([BI[BI)I
            pop
        15: .line 218
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.cipher:Lorg/bouncycastle/crypto/modes/SICBlockCipher;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufBlock:[B
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            aload 4 /* tmp */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            invokevirtual org.bouncycastle.crypto.modes.SICBlockCipher.processBlock:([BI[BI)I
            pop
        16: .line 220
            aload 4 /* tmp */
            iconst_0
            aload 1 /* out */
            iload 2 /* outOff */
            iload 3 /* extra */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.macSize:I
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        17: .line 223
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.bouncycastle.crypto.modes.EAXBlockCipher.calculateMac:()V
        18: .line 225
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufBlock:[B
            iload 3 /* extra */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.macSize:I
            isub
            invokevirtual org.bouncycastle.crypto.modes.EAXBlockCipher.verifyMac:([BI)Z
            ifne 20
        19: .line 227
            new org.bouncycastle.crypto.InvalidCipherTextException
            dup
            ldc "mac check in EAX failed"
            invokespecial org.bouncycastle.crypto.InvalidCipherTextException.<init>:(Ljava/lang/String;)V
            athrow
        20: .line 230
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual org.bouncycastle.crypto.modes.EAXBlockCipher.reset:(Z)V
        21: .line 232
            iload 3 /* extra */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.macSize:I
            isub
            ireturn
        end local 4 // byte[] tmp
        end local 3 // int extra
        end local 2 // int outOff
        end local 1 // byte[] out
        end local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   22     0    this  Lorg/bouncycastle/crypto/modes/EAXBlockCipher;
            0   22     1     out  [B
            0   22     2  outOff  I
            1   22     3   extra  I
            2   22     4     tmp  [B
    Exceptions:
      throws java.lang.IllegalStateException, org.bouncycastle.crypto.InvalidCipherTextException
    MethodParameters:
        Name  Flags
      out     
      outOff  

  public byte[] getMac();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
         0: .line 238
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.macSize:I
            newarray 8
            astore 1 /* mac */
        start local 1 // byte[] mac
         1: .line 240
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.macBlock:[B
            iconst_0
            aload 1 /* mac */
            iconst_0
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.macSize:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 242
            aload 1 /* mac */
            areturn
        end local 1 // byte[] mac
        end local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/bouncycastle/crypto/modes/EAXBlockCipher;
            1    3     1   mac  [B

  public int getUpdateOutputSize(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
        start local 1 // int len
         0: .line 247
            iload 1 /* len */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufOff:I
            iadd
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            idiv
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            imul
            ireturn
        end local 1 // int len
        end local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/modes/EAXBlockCipher;
            0    1     1   len  I
    MethodParameters:
      Name  Flags
      len   

  public int getOutputSize(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
        start local 1 // int len
         0: .line 252
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.forEncryption:Z
            ifeq 2
         1: .line 254
            iload 1 /* len */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufOff:I
            iadd
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.macSize:I
            iadd
            ireturn
         2: .line 258
      StackMap locals:
      StackMap stack:
            iload 1 /* len */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufOff:I
            iadd
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.macSize:I
            isub
            ireturn
        end local 1 // int len
        end local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/bouncycastle/crypto/modes/EAXBlockCipher;
            0    3     1   len  I
    MethodParameters:
      Name  Flags
      len   

  private int process(byte, byte[], int);
    descriptor: (B[BI)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
        start local 1 // byte b
        start local 2 // byte[] out
        start local 3 // int outOff
         0: .line 264
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufBlock:[B
            aload 0 /* this */
            dup
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufOff:I
            dup_x1
            iconst_1
            iadd
            putfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufOff:I
            iload 1 /* b */
            bastore
         1: .line 266
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufOff:I
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufBlock:[B
            arraylength
            if_icmpne 11
         2: .line 270
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.forEncryption:Z
            ifeq 6
         3: .line 272
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.cipher:Lorg/bouncycastle/crypto/modes/SICBlockCipher;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufBlock:[B
            iconst_0
            aload 2 /* out */
            iload 3 /* outOff */
            invokevirtual org.bouncycastle.crypto.modes.SICBlockCipher.processBlock:([BI[BI)I
            istore 4 /* size */
        start local 4 // int size
         4: .line 274
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.mac:Lorg/bouncycastle/crypto/Mac;
            aload 2 /* out */
            iload 3 /* outOff */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            invokeinterface org.bouncycastle.crypto.Mac.update:([BII)V
         5: .line 275
            goto 8
        end local 4 // int size
         6: .line 278
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.mac:Lorg/bouncycastle/crypto/Mac;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufBlock:[B
            iconst_0
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            invokeinterface org.bouncycastle.crypto.Mac.update:([BII)V
         7: .line 280
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.cipher:Lorg/bouncycastle/crypto/modes/SICBlockCipher;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufBlock:[B
            iconst_0
            aload 2 /* out */
            iload 3 /* outOff */
            invokevirtual org.bouncycastle.crypto.modes.SICBlockCipher.processBlock:([BI[BI)I
            istore 4 /* size */
        start local 4 // int size
         8: .line 283
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            putfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufOff:I
         9: .line 284
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufBlock:[B
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.bufBlock:[B
            iconst_0
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.blockSize:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 286
            iload 4 /* size */
            ireturn
        end local 4 // int size
        11: .line 289
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // int outOff
        end local 2 // byte[] out
        end local 1 // byte b
        end local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lorg/bouncycastle/crypto/modes/EAXBlockCipher;
            0   12     1       b  B
            0   12     2     out  [B
            0   12     3  outOff  I
            4    6     4    size  I
            8   11     4    size  I
    MethodParameters:
        Name  Flags
      b       
      out     
      outOff  

  private boolean verifyMac(byte[], int);
    descriptor: ([BI)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
        start local 1 // byte[] mac
        start local 2 // int off
         0: .line 294
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 5
         2: .line 296
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.macBlock:[B
            iload 3 /* i */
            baload
            aload 1 /* mac */
            iload 2 /* off */
            iload 3 /* i */
            iadd
            baload
            if_icmpeq 4
         3: .line 298
            iconst_0
            ireturn
         4: .line 294
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.modes.EAXBlockCipher.macSize:I
            if_icmplt 2
        end local 3 // int i
         6: .line 302
            iconst_1
            ireturn
        end local 2 // int off
        end local 1 // byte[] mac
        end local 0 // org.bouncycastle.crypto.modes.EAXBlockCipher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/bouncycastle/crypto/modes/EAXBlockCipher;
            0    7     1   mac  [B
            0    7     2   off  I
            1    6     3     i  I
    MethodParameters:
      Name  Flags
      mac   
      off   
}
SourceFile: "EAXBlockCipher.java"