public class org.bouncycastle.crypto.macs.CMac implements org.bouncycastle.crypto.Mac
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bouncycastle.crypto.macs.CMac
  super_class: java.lang.Object
{
  private static final byte CONSTANT_128;
    descriptor: B
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -121

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

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

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

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

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

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

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

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

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

  private byte[] Lu2;
    descriptor: [B
    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.macs.CMac this
        start local 1 // org.bouncycastle.crypto.BlockCipher cipher
         0: .line 54
            aload 0 /* this */
            aload 1 /* cipher */
            aload 1 /* cipher */
            invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
            bipush 8
            imul
            invokespecial org.bouncycastle.crypto.macs.CMac.<init>:(Lorg/bouncycastle/crypto/BlockCipher;I)V
         1: .line 55
            return
        end local 1 // org.bouncycastle.crypto.BlockCipher cipher
        end local 0 // org.bouncycastle.crypto.macs.CMac this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/bouncycastle/crypto/macs/CMac;
            0    2     1  cipher  Lorg/bouncycastle/crypto/BlockCipher;
    MethodParameters:
        Name  Flags
      cipher  

  public void <init>(org.bouncycastle.crypto.BlockCipher, int);
    descriptor: (Lorg/bouncycastle/crypto/BlockCipher;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.bouncycastle.crypto.macs.CMac this
        start local 1 // org.bouncycastle.crypto.BlockCipher cipher
        start local 2 // int macSizeInBits
         0: .line 69
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 71
            iload 2 /* macSizeInBits */
            bipush 8
            irem
            ifeq 3
         2: .line 73
            new java.lang.IllegalArgumentException
            dup
            ldc "MAC size must be multiple of 8"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 76
      StackMap locals: org.bouncycastle.crypto.macs.CMac org.bouncycastle.crypto.BlockCipher int
      StackMap stack:
            iload 2 /* macSizeInBits */
            aload 1 /* cipher */
            invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
            bipush 8
            imul
            if_icmple 9
         4: .line 78
            new java.lang.IllegalArgumentException
            dup
         5: .line 79
            new java.lang.StringBuilder
            dup
            ldc "MAC size must be less or equal to "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         6: .line 80
            aload 1 /* cipher */
            invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
            bipush 8
            imul
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         7: .line 79
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         8: .line 78
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 83
      StackMap locals:
      StackMap stack:
            aload 1 /* cipher */
            invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
            bipush 8
            if_icmpeq 13
            aload 1 /* cipher */
            invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
            bipush 16
            if_icmpeq 13
        10: .line 85
            new java.lang.IllegalArgumentException
            dup
        11: .line 86
            ldc "Block size must be either 64 or 128 bits"
        12: .line 85
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        13: .line 89
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new org.bouncycastle.crypto.modes.CBCBlockCipher
            dup
            aload 1 /* cipher */
            invokespecial org.bouncycastle.crypto.modes.CBCBlockCipher.<init>:(Lorg/bouncycastle/crypto/BlockCipher;)V
            putfield org.bouncycastle.crypto.macs.CMac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
        14: .line 90
            aload 0 /* this */
            iload 2 /* macSizeInBits */
            bipush 8
            idiv
            putfield org.bouncycastle.crypto.macs.CMac.macSize:I
        15: .line 92
            aload 0 /* this */
            aload 1 /* cipher */
            invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
            newarray 8
            putfield org.bouncycastle.crypto.macs.CMac.mac:[B
        16: .line 94
            aload 0 /* this */
            aload 1 /* cipher */
            invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
            newarray 8
            putfield org.bouncycastle.crypto.macs.CMac.buf:[B
        17: .line 96
            aload 0 /* this */
            aload 1 /* cipher */
            invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
            newarray 8
            putfield org.bouncycastle.crypto.macs.CMac.ZEROES:[B
        18: .line 98
            aload 0 /* this */
            iconst_0
            putfield org.bouncycastle.crypto.macs.CMac.bufOff:I
        19: .line 99
            return
        end local 2 // int macSizeInBits
        end local 1 // org.bouncycastle.crypto.BlockCipher cipher
        end local 0 // org.bouncycastle.crypto.macs.CMac this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   20     0           this  Lorg/bouncycastle/crypto/macs/CMac;
            0   20     1         cipher  Lorg/bouncycastle/crypto/BlockCipher;
            0   20     2  macSizeInBits  I
    MethodParameters:
               Name  Flags
      cipher         
      macSizeInBits  

  public java.lang.String getAlgorithmName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.macs.CMac this
         0: .line 103
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            invokeinterface org.bouncycastle.crypto.BlockCipher.getAlgorithmName:()Ljava/lang/String;
            areturn
        end local 0 // org.bouncycastle.crypto.macs.CMac this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/macs/CMac;

  private byte[] doubleLu(byte[]);
    descriptor: ([B)[B
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // org.bouncycastle.crypto.macs.CMac this
        start local 1 // byte[] in
         0: .line 108
            aload 1 /* in */
            iconst_0
            baload
            sipush 255
            iand
            bipush 7
            ishr
            istore 2 /* FirstBit */
        start local 2 // int FirstBit
         1: .line 109
            aload 1 /* in */
            arraylength
            newarray 8
            astore 3 /* ret */
        start local 3 // byte[] ret
         2: .line 110
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         3: goto 6
         4: .line 112
      StackMap locals: int byte[] int
      StackMap stack:
            aload 3 /* ret */
            iload 4 /* i */
            aload 1 /* in */
            iload 4 /* i */
            baload
            iconst_1
            ishl
            aload 1 /* in */
            iload 4 /* i */
            iconst_1
            iadd
            baload
            sipush 255
            iand
            bipush 7
            ishr
            iadd
            i2b
            bastore
         5: .line 110
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 4 /* i */
            aload 1 /* in */
            arraylength
            iconst_1
            isub
            if_icmplt 4
        end local 4 // int i
         7: .line 114
            aload 3 /* ret */
            aload 1 /* in */
            arraylength
            iconst_1
            isub
            aload 1 /* in */
            aload 1 /* in */
            arraylength
            iconst_1
            isub
            baload
            iconst_1
            ishl
            i2b
            bastore
         8: .line 115
            iload 2 /* FirstBit */
            iconst_1
            if_icmpne 12
         9: .line 117
            aload 3 /* ret */
            aload 1 /* in */
            arraylength
            iconst_1
            isub
            dup2
            baload
            aload 1 /* in */
            arraylength
            bipush 16
            if_icmpne 10
            bipush -121
            goto 11
      StackMap locals: org.bouncycastle.crypto.macs.CMac byte[] int byte[]
      StackMap stack: byte[] int int
        10: bipush 27
      StackMap locals: org.bouncycastle.crypto.macs.CMac byte[] int byte[]
      StackMap stack: byte[] int int int
        11: ixor
            i2b
            bastore
        12: .line 119
      StackMap locals:
      StackMap stack:
            aload 3 /* ret */
            areturn
        end local 3 // byte[] ret
        end local 2 // int FirstBit
        end local 1 // byte[] in
        end local 0 // org.bouncycastle.crypto.macs.CMac this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   13     0      this  Lorg/bouncycastle/crypto/macs/CMac;
            0   13     1        in  [B
            1   13     2  FirstBit  I
            2   13     3       ret  [B
            3    7     4         i  I
    MethodParameters:
      Name  Flags
      in    

  public void init(org.bouncycastle.crypto.CipherParameters);
    descriptor: (Lorg/bouncycastle/crypto/CipherParameters;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.bouncycastle.crypto.macs.CMac this
        start local 1 // org.bouncycastle.crypto.CipherParameters params
         0: .line 124
            aload 0 /* this */
            invokevirtual org.bouncycastle.crypto.macs.CMac.reset:()V
         1: .line 126
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            iconst_1
            aload 1 /* params */
            invokeinterface org.bouncycastle.crypto.BlockCipher.init:(ZLorg/bouncycastle/crypto/CipherParameters;)V
         2: .line 129
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.ZEROES:[B
            arraylength
            newarray 8
            putfield org.bouncycastle.crypto.macs.CMac.L:[B
         3: .line 130
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.ZEROES:[B
            iconst_0
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.L:[B
            iconst_0
            invokeinterface org.bouncycastle.crypto.BlockCipher.processBlock:([BI[BI)I
            pop
         4: .line 131
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.L:[B
            invokevirtual org.bouncycastle.crypto.macs.CMac.doubleLu:([B)[B
            putfield org.bouncycastle.crypto.macs.CMac.Lu:[B
         5: .line 132
            aload 0 /* this */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.Lu:[B
            invokevirtual org.bouncycastle.crypto.macs.CMac.doubleLu:([B)[B
            putfield org.bouncycastle.crypto.macs.CMac.Lu2:[B
         6: .line 134
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            iconst_1
            aload 1 /* params */
            invokeinterface org.bouncycastle.crypto.BlockCipher.init:(ZLorg/bouncycastle/crypto/CipherParameters;)V
         7: .line 135
            return
        end local 1 // org.bouncycastle.crypto.CipherParameters params
        end local 0 // org.bouncycastle.crypto.macs.CMac this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/bouncycastle/crypto/macs/CMac;
            0    8     1  params  Lorg/bouncycastle/crypto/CipherParameters;
    MethodParameters:
        Name  Flags
      params  

  public int getMacSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.macs.CMac this
         0: .line 139
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.macSize:I
            ireturn
        end local 0 // org.bouncycastle.crypto.macs.CMac this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/macs/CMac;

  public void update(byte);
    descriptor: (B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.bouncycastle.crypto.macs.CMac this
        start local 1 // byte in
         0: .line 144
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.bufOff:I
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.buf:[B
            arraylength
            if_icmpne 3
         1: .line 146
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.buf:[B
            iconst_0
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.mac:[B
            iconst_0
            invokeinterface org.bouncycastle.crypto.BlockCipher.processBlock:([BI[BI)I
            pop
         2: .line 147
            aload 0 /* this */
            iconst_0
            putfield org.bouncycastle.crypto.macs.CMac.bufOff:I
         3: .line 150
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.buf:[B
            aload 0 /* this */
            dup
            getfield org.bouncycastle.crypto.macs.CMac.bufOff:I
            dup_x1
            iconst_1
            iadd
            putfield org.bouncycastle.crypto.macs.CMac.bufOff:I
            iload 1 /* in */
            bastore
         4: .line 151
            return
        end local 1 // byte in
        end local 0 // org.bouncycastle.crypto.macs.CMac this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/bouncycastle/crypto/macs/CMac;
            0    5     1    in  B
    MethodParameters:
      Name  Flags
      in    

  public void update(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // org.bouncycastle.crypto.macs.CMac this
        start local 1 // byte[] in
        start local 2 // int inOff
        start local 3 // int len
         0: .line 155
            iload 3 /* len */
            ifge 4
         1: .line 157
            new java.lang.IllegalArgumentException
            dup
         2: .line 158
            ldc "Can't have a negative input length!"
         3: .line 157
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 161
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
            istore 4 /* blockSize */
        start local 4 // int blockSize
         5: .line 162
            iload 4 /* blockSize */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.bufOff:I
            isub
            istore 5 /* gapLen */
        start local 5 // int gapLen
         6: .line 164
            iload 3 /* len */
            iload 5 /* gapLen */
            if_icmple 17
         7: .line 166
            aload 1 /* in */
            iload 2 /* inOff */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.buf:[B
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.bufOff:I
            iload 5 /* gapLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 168
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.buf:[B
            iconst_0
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.mac:[B
            iconst_0
            invokeinterface org.bouncycastle.crypto.BlockCipher.processBlock:([BI[BI)I
            pop
         9: .line 170
            aload 0 /* this */
            iconst_0
            putfield org.bouncycastle.crypto.macs.CMac.bufOff:I
        10: .line 171
            iload 3 /* len */
            iload 5 /* gapLen */
            isub
            istore 3 /* len */
        11: .line 172
            iload 2 /* inOff */
            iload 5 /* gapLen */
            iadd
            istore 2 /* inOff */
        12: .line 174
            goto 16
        13: .line 176
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            aload 1 /* in */
            iload 2 /* inOff */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.mac:[B
            iconst_0
            invokeinterface org.bouncycastle.crypto.BlockCipher.processBlock:([BI[BI)I
            pop
        14: .line 178
            iload 3 /* len */
            iload 4 /* blockSize */
            isub
            istore 3 /* len */
        15: .line 179
            iload 2 /* inOff */
            iload 4 /* blockSize */
            iadd
            istore 2 /* inOff */
        16: .line 174
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            iload 4 /* blockSize */
            if_icmpgt 13
        17: .line 183
      StackMap locals:
      StackMap stack:
            aload 1 /* in */
            iload 2 /* inOff */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.buf:[B
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.bufOff:I
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        18: .line 185
            aload 0 /* this */
            dup
            getfield org.bouncycastle.crypto.macs.CMac.bufOff:I
            iload 3 /* len */
            iadd
            putfield org.bouncycastle.crypto.macs.CMac.bufOff:I
        19: .line 186
            return
        end local 5 // int gapLen
        end local 4 // int blockSize
        end local 3 // int len
        end local 2 // int inOff
        end local 1 // byte[] in
        end local 0 // org.bouncycastle.crypto.macs.CMac this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   20     0       this  Lorg/bouncycastle/crypto/macs/CMac;
            0   20     1         in  [B
            0   20     2      inOff  I
            0   20     3        len  I
            5   20     4  blockSize  I
            6   20     5     gapLen  I
    MethodParameters:
       Name  Flags
      in     
      inOff  
      len    

  public int doFinal(byte[], int);
    descriptor: ([BI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.bouncycastle.crypto.macs.CMac this
        start local 1 // byte[] out
        start local 2 // int outOff
         0: .line 190
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            invokeinterface org.bouncycastle.crypto.BlockCipher.getBlockSize:()I
            istore 3 /* blockSize */
        start local 3 // int blockSize
         1: .line 193
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.bufOff:I
            iload 3 /* blockSize */
            if_icmpne 4
         2: .line 195
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.Lu:[B
            astore 4 /* lu */
        start local 4 // byte[] lu
         3: .line 196
            goto 6
        end local 4 // byte[] lu
         4: .line 199
      StackMap locals: int
      StackMap stack:
            new org.bouncycastle.crypto.paddings.ISO7816d4Padding
            dup
            invokespecial org.bouncycastle.crypto.paddings.ISO7816d4Padding.<init>:()V
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.buf:[B
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.bufOff:I
            invokevirtual org.bouncycastle.crypto.paddings.ISO7816d4Padding.addPadding:([BI)I
            pop
         5: .line 200
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.Lu2:[B
            astore 4 /* lu */
        start local 4 // byte[] lu
         6: .line 203
      StackMap locals: byte[]
      StackMap stack:
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         7: goto 10
         8: .line 205
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.buf:[B
            iload 5 /* i */
            dup2
            baload
            aload 4 /* lu */
            iload 5 /* i */
            baload
            ixor
            i2b
            bastore
         9: .line 203
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 5 /* i */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.mac:[B
            arraylength
            if_icmplt 8
        end local 5 // int i
        11: .line 208
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.buf:[B
            iconst_0
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.mac:[B
            iconst_0
            invokeinterface org.bouncycastle.crypto.BlockCipher.processBlock:([BI[BI)I
            pop
        12: .line 210
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.mac:[B
            iconst_0
            aload 1 /* out */
            iload 2 /* outOff */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.macSize:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        13: .line 212
            aload 0 /* this */
            invokevirtual org.bouncycastle.crypto.macs.CMac.reset:()V
        14: .line 214
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.macSize:I
            ireturn
        end local 4 // byte[] lu
        end local 3 // int blockSize
        end local 2 // int outOff
        end local 1 // byte[] out
        end local 0 // org.bouncycastle.crypto.macs.CMac this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   15     0       this  Lorg/bouncycastle/crypto/macs/CMac;
            0   15     1        out  [B
            0   15     2     outOff  I
            1   15     3  blockSize  I
            3    4     4         lu  [B
            6   15     4         lu  [B
            7   11     5          i  I
    MethodParameters:
        Name  Flags
      out     
      outOff  

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.bouncycastle.crypto.macs.CMac this
         0: .line 225
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: goto 4
         2: .line 227
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.buf:[B
            iload 1 /* i */
            iconst_0
            bastore
         3: .line 225
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 1 /* i */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.buf:[B
            arraylength
            if_icmplt 2
        end local 1 // int i
         5: .line 230
            aload 0 /* this */
            iconst_0
            putfield org.bouncycastle.crypto.macs.CMac.bufOff:I
         6: .line 235
            aload 0 /* this */
            getfield org.bouncycastle.crypto.macs.CMac.cipher:Lorg/bouncycastle/crypto/BlockCipher;
            invokeinterface org.bouncycastle.crypto.BlockCipher.reset:()V
         7: .line 236
            return
        end local 0 // org.bouncycastle.crypto.macs.CMac this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/bouncycastle/crypto/macs/CMac;
            1    5     1     i  I
}
SourceFile: "CMac.java"