public class org.bouncycastle.crypto.engines.NoekeonEngine implements org.bouncycastle.crypto.BlockCipher
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.bouncycastle.crypto.engines.NoekeonEngine
  super_class: java.lang.Object
{
  private static final int genericSize;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 16

  private static final int[] nullVector;
    descriptor: [I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final int[] roundConstants;
    descriptor: [I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private int[] state;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

  private int[] subKeys;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

  private int[] decryptKeys;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 18
            iconst_4
            newarray 10
         1: .line 17
            putstatic org.bouncycastle.crypto.engines.NoekeonEngine.nullVector:[I
         2: .line 23
            bipush 17
            newarray 10
            dup
            iconst_0
         3: .line 24
            sipush 128
            iastore
            dup
            iconst_1
            bipush 27
            iastore
            dup
            iconst_2
            bipush 54
            iastore
            dup
            iconst_3
            bipush 108
            iastore
            dup
            iconst_4
         4: .line 25
            sipush 216
            iastore
            dup
            iconst_5
            sipush 171
            iastore
            dup
            bipush 6
            bipush 77
            iastore
            dup
            bipush 7
            sipush 154
            iastore
            dup
            bipush 8
         5: .line 26
            bipush 47
            iastore
            dup
            bipush 9
            bipush 94
            iastore
            dup
            bipush 10
            sipush 188
            iastore
            dup
            bipush 11
            bipush 99
            iastore
            dup
            bipush 12
         6: .line 27
            sipush 198
            iastore
            dup
            bipush 13
            sipush 151
            iastore
            dup
            bipush 14
            bipush 53
            iastore
            dup
            bipush 15
            bipush 106
            iastore
            dup
            bipush 16
         7: .line 28
            sipush 212
            iastore
         8: .line 22
            putstatic org.bouncycastle.crypto.engines.NoekeonEngine.roundConstants:[I
         9: .line 29
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
         0: .line 42
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 31
            aload 0 /* this */
            iconst_4
            newarray 10
            putfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
         2: .line 32
            aload 0 /* this */
            iconst_4
            newarray 10
            putfield org.bouncycastle.crypto.engines.NoekeonEngine.subKeys:[I
         3: .line 33
            aload 0 /* this */
            iconst_4
            newarray 10
            putfield org.bouncycastle.crypto.engines.NoekeonEngine.decryptKeys:[I
         4: .line 44
            aload 0 /* this */
            iconst_0
            putfield org.bouncycastle.crypto.engines.NoekeonEngine._initialised:Z
         5: .line 45
            return
        end local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/bouncycastle/crypto/engines/NoekeonEngine;

  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.engines.NoekeonEngine this
         0: .line 49
            ldc "Noekeon"
            areturn
        end local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/engines/NoekeonEngine;

  public int getBlockSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
         0: .line 54
            bipush 16
            ireturn
        end local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/engines/NoekeonEngine;

  public void init(boolean, org.bouncycastle.crypto.CipherParameters);
    descriptor: (ZLorg/bouncycastle/crypto/CipherParameters;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
        start local 1 // boolean forEncryption
        start local 2 // org.bouncycastle.crypto.CipherParameters params
         0: .line 69
            aload 2 /* params */
            instanceof org.bouncycastle.crypto.params.KeyParameter
            ifne 2
         1: .line 71
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "invalid parameter passed to Noekeon init - "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* params */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 74
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* forEncryption */
            putfield org.bouncycastle.crypto.engines.NoekeonEngine._forEncryption:Z
         3: .line 75
            aload 0 /* this */
            iconst_1
            putfield org.bouncycastle.crypto.engines.NoekeonEngine._initialised:Z
         4: .line 77
            aload 2 /* params */
            checkcast org.bouncycastle.crypto.params.KeyParameter
            astore 3 /* p */
        start local 3 // org.bouncycastle.crypto.params.KeyParameter p
         5: .line 79
            aload 0 /* this */
            aload 3 /* p */
            invokevirtual org.bouncycastle.crypto.params.KeyParameter.getKey:()[B
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.setKey:([B)V
         6: .line 80
            return
        end local 3 // org.bouncycastle.crypto.params.KeyParameter p
        end local 2 // org.bouncycastle.crypto.CipherParameters params
        end local 1 // boolean forEncryption
        end local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lorg/bouncycastle/crypto/engines/NoekeonEngine;
            0    7     1  forEncryption  Z
            0    7     2         params  Lorg/bouncycastle/crypto/CipherParameters;
            5    7     3              p  Lorg/bouncycastle/crypto/params/KeyParameter;
    MethodParameters:
               Name  Flags
      forEncryption  
      params         

  public int processBlock(byte[], int, byte[], int);
    descriptor: ([BI[BI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
        start local 1 // byte[] in
        start local 2 // int inOff
        start local 3 // byte[] out
        start local 4 // int outOff
         0: .line 88
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine._initialised:Z
            ifne 2
         1: .line 90
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.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 " not initialised"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 93
      StackMap locals:
      StackMap stack:
            iload 2 /* inOff */
            bipush 16
            iadd
            aload 1 /* in */
            arraylength
            if_icmple 4
         3: .line 95
            new org.bouncycastle.crypto.DataLengthException
            dup
            ldc "input buffer too short"
            invokespecial org.bouncycastle.crypto.DataLengthException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 98
      StackMap locals:
      StackMap stack:
            iload 4 /* outOff */
            bipush 16
            iadd
            aload 3 /* out */
            arraylength
            if_icmple 6
         5: .line 100
            new org.bouncycastle.crypto.DataLengthException
            dup
            ldc "output buffer too short"
            invokespecial org.bouncycastle.crypto.DataLengthException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 103
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine._forEncryption:Z
            ifeq 7
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOff */
            aload 3 /* out */
            iload 4 /* outOff */
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.encryptBlock:([BI[BI)I
            goto 8
         7: .line 104
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOff */
            aload 3 /* out */
            iload 4 /* outOff */
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.decryptBlock:([BI[BI)I
         8: .line 103
      StackMap locals:
      StackMap stack: int
            ireturn
        end local 4 // int outOff
        end local 3 // byte[] out
        end local 2 // int inOff
        end local 1 // byte[] in
        end local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/bouncycastle/crypto/engines/NoekeonEngine;
            0    9     1      in  [B
            0    9     2   inOff  I
            0    9     3     out  [B
            0    9     4  outOff  I
    MethodParameters:
        Name  Flags
      in      
      inOff   
      out     
      outOff  

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
         0: .line 109
            return
        end local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/engines/NoekeonEngine;

  private void setKey(byte[]);
    descriptor: ([B)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
        start local 1 // byte[] key
         0: .line 119
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.subKeys:[I
            iconst_0
            aload 0 /* this */
            aload 1 /* key */
            iconst_0
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
            iastore
         1: .line 120
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.subKeys:[I
            iconst_1
            aload 0 /* this */
            aload 1 /* key */
            iconst_4
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
            iastore
         2: .line 121
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.subKeys:[I
            iconst_2
            aload 0 /* this */
            aload 1 /* key */
            bipush 8
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
            iastore
         3: .line 122
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.subKeys:[I
            iconst_3
            aload 0 /* this */
            aload 1 /* key */
            bipush 12
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
            iastore
         4: .line 123
            return
        end local 1 // byte[] key
        end local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/bouncycastle/crypto/engines/NoekeonEngine;
            0    5     1   key  [B
    MethodParameters:
      Name  Flags
      key   

  private int encryptBlock(byte[], int, byte[], int);
    descriptor: ([BI[BI)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=6, args_size=5
        start local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
        start local 1 // byte[] in
        start local 2 // int inOff
        start local 3 // byte[] out
        start local 4 // int outOff
         0: .line 131
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_0
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOff */
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
            iastore
         1: .line 132
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_1
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOff */
            iconst_4
            iadd
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
            iastore
         2: .line 133
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_2
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOff */
            bipush 8
            iadd
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
            iastore
         3: .line 134
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_3
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOff */
            bipush 12
            iadd
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
            iastore
         4: .line 137
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         5: goto 12
         6: .line 139
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_0
            dup2
            iaload
            getstatic org.bouncycastle.crypto.engines.NoekeonEngine.roundConstants:[I
            iload 5 /* i */
            iaload
            ixor
            iastore
         7: .line 140
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.subKeys:[I
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.theta:([I[I)V
         8: .line 141
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.pi1:([I)V
         9: .line 142
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.gamma:([I)V
        10: .line 143
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.pi2:([I)V
        11: .line 137
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 5 /* i */
            bipush 16
            if_icmplt 6
        13: .line 146
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_0
            dup2
            iaload
            getstatic org.bouncycastle.crypto.engines.NoekeonEngine.roundConstants:[I
            iload 5 /* i */
            iaload
            ixor
            iastore
        14: .line 147
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.subKeys:[I
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.theta:([I[I)V
        15: .line 149
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_0
            iaload
            aload 3 /* out */
            iload 4 /* outOff */
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.intToBytesBig:(I[BI)V
        16: .line 150
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_1
            iaload
            aload 3 /* out */
            iload 4 /* outOff */
            iconst_4
            iadd
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.intToBytesBig:(I[BI)V
        17: .line 151
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_2
            iaload
            aload 3 /* out */
            iload 4 /* outOff */
            bipush 8
            iadd
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.intToBytesBig:(I[BI)V
        18: .line 152
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_3
            iaload
            aload 3 /* out */
            iload 4 /* outOff */
            bipush 12
            iadd
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.intToBytesBig:(I[BI)V
        19: .line 154
            bipush 16
            ireturn
        end local 5 // int i
        end local 4 // int outOff
        end local 3 // byte[] out
        end local 2 // int inOff
        end local 1 // byte[] in
        end local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   20     0    this  Lorg/bouncycastle/crypto/engines/NoekeonEngine;
            0   20     1      in  [B
            0   20     2   inOff  I
            0   20     3     out  [B
            0   20     4  outOff  I
            5   20     5       i  I
    MethodParameters:
        Name  Flags
      in      
      inOff   
      out     
      outOff  

  private int decryptBlock(byte[], int, byte[], int);
    descriptor: ([BI[BI)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=6, args_size=5
        start local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
        start local 1 // byte[] in
        start local 2 // int inOff
        start local 3 // byte[] out
        start local 4 // int outOff
         0: .line 163
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_0
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOff */
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
            iastore
         1: .line 164
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_1
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOff */
            iconst_4
            iadd
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
            iastore
         2: .line 165
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_2
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOff */
            bipush 8
            iadd
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
            iastore
         3: .line 166
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_3
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOff */
            bipush 12
            iadd
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
            iastore
         4: .line 168
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.subKeys:[I
            iconst_0
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.decryptKeys:[I
            iconst_0
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.subKeys:[I
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 169
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.decryptKeys:[I
            getstatic org.bouncycastle.crypto.engines.NoekeonEngine.nullVector:[I
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.theta:([I[I)V
         6: .line 172
            bipush 16
            istore 5 /* i */
        start local 5 // int i
         7: goto 14
         8: .line 174
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.decryptKeys:[I
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.theta:([I[I)V
         9: .line 175
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_0
            dup2
            iaload
            getstatic org.bouncycastle.crypto.engines.NoekeonEngine.roundConstants:[I
            iload 5 /* i */
            iaload
            ixor
            iastore
        10: .line 176
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.pi1:([I)V
        11: .line 177
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.gamma:([I)V
        12: .line 178
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.pi2:([I)V
        13: .line 172
            iinc 5 /* i */ -1
      StackMap locals:
      StackMap stack:
        14: iload 5 /* i */
            ifgt 8
        15: .line 181
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.decryptKeys:[I
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.theta:([I[I)V
        16: .line 182
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_0
            dup2
            iaload
            getstatic org.bouncycastle.crypto.engines.NoekeonEngine.roundConstants:[I
            iload 5 /* i */
            iaload
            ixor
            iastore
        17: .line 184
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_0
            iaload
            aload 3 /* out */
            iload 4 /* outOff */
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.intToBytesBig:(I[BI)V
        18: .line 185
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_1
            iaload
            aload 3 /* out */
            iload 4 /* outOff */
            iconst_4
            iadd
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.intToBytesBig:(I[BI)V
        19: .line 186
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_2
            iaload
            aload 3 /* out */
            iload 4 /* outOff */
            bipush 8
            iadd
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.intToBytesBig:(I[BI)V
        20: .line 187
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
            iconst_3
            iaload
            aload 3 /* out */
            iload 4 /* outOff */
            bipush 12
            iadd
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.intToBytesBig:(I[BI)V
        21: .line 189
            bipush 16
            ireturn
        end local 5 // int i
        end local 4 // int outOff
        end local 3 // byte[] out
        end local 2 // int inOff
        end local 1 // byte[] in
        end local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   22     0    this  Lorg/bouncycastle/crypto/engines/NoekeonEngine;
            0   22     1      in  [B
            0   22     2   inOff  I
            0   22     3     out  [B
            0   22     4  outOff  I
            7   22     5       i  I
    MethodParameters:
        Name  Flags
      in      
      inOff   
      out     
      outOff  

  private void gamma(int[]);
    descriptor: ([I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
        start local 1 // int[] a
         0: .line 194
            aload 1 /* a */
            iconst_1
            dup2
            iaload
            aload 1 /* a */
            iconst_3
            iaload
            iconst_m1
            ixor
            aload 1 /* a */
            iconst_2
            iaload
            iconst_m1
            ixor
            iand
            ixor
            iastore
         1: .line 195
            aload 1 /* a */
            iconst_0
            dup2
            iaload
            aload 1 /* a */
            iconst_2
            iaload
            aload 1 /* a */
            iconst_1
            iaload
            iand
            ixor
            iastore
         2: .line 197
            aload 1 /* a */
            iconst_3
            iaload
            istore 2 /* tmp */
        start local 2 // int tmp
         3: .line 198
            aload 1 /* a */
            iconst_3
            aload 1 /* a */
            iconst_0
            iaload
            iastore
         4: .line 199
            aload 1 /* a */
            iconst_0
            iload 2 /* tmp */
            iastore
         5: .line 200
            aload 1 /* a */
            iconst_2
            dup2
            iaload
            aload 1 /* a */
            iconst_0
            iaload
            aload 1 /* a */
            iconst_1
            iaload
            ixor
            aload 1 /* a */
            iconst_3
            iaload
            ixor
            ixor
            iastore
         6: .line 202
            aload 1 /* a */
            iconst_1
            dup2
            iaload
            aload 1 /* a */
            iconst_3
            iaload
            iconst_m1
            ixor
            aload 1 /* a */
            iconst_2
            iaload
            iconst_m1
            ixor
            iand
            ixor
            iastore
         7: .line 203
            aload 1 /* a */
            iconst_0
            dup2
            iaload
            aload 1 /* a */
            iconst_2
            iaload
            aload 1 /* a */
            iconst_1
            iaload
            iand
            ixor
            iastore
         8: .line 204
            return
        end local 2 // int tmp
        end local 1 // int[] a
        end local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/bouncycastle/crypto/engines/NoekeonEngine;
            0    9     1     a  [I
            3    9     2   tmp  I
    MethodParameters:
      Name  Flags
      a     

  private void theta(int[], int[]);
    descriptor: ([I[I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
        start local 1 // int[] a
        start local 2 // int[] k
         0: .line 210
            aload 1 /* a */
            iconst_0
            iaload
            aload 1 /* a */
            iconst_2
            iaload
            ixor
            istore 3 /* tmp */
        start local 3 // int tmp
         1: .line 211
            iload 3 /* tmp */
            aload 0 /* this */
            iload 3 /* tmp */
            bipush 8
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
            aload 0 /* this */
            iload 3 /* tmp */
            bipush 24
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
            ixor
            ixor
            istore 3 /* tmp */
         2: .line 212
            aload 1 /* a */
            iconst_1
            dup2
            iaload
            iload 3 /* tmp */
            ixor
            iastore
         3: .line 213
            aload 1 /* a */
            iconst_3
            dup2
            iaload
            iload 3 /* tmp */
            ixor
            iastore
         4: .line 215
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         5: goto 8
         6: .line 217
      StackMap locals: int int
      StackMap stack:
            aload 1 /* a */
            iload 4 /* i */
            dup2
            iaload
            aload 2 /* k */
            iload 4 /* i */
            iaload
            ixor
            iastore
         7: .line 215
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 4 /* i */
            iconst_4
            if_icmplt 6
        end local 4 // int i
         9: .line 220
            aload 1 /* a */
            iconst_1
            iaload
            aload 1 /* a */
            iconst_3
            iaload
            ixor
            istore 3 /* tmp */
        10: .line 221
            iload 3 /* tmp */
            aload 0 /* this */
            iload 3 /* tmp */
            bipush 8
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
            aload 0 /* this */
            iload 3 /* tmp */
            bipush 24
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
            ixor
            ixor
            istore 3 /* tmp */
        11: .line 222
            aload 1 /* a */
            iconst_0
            dup2
            iaload
            iload 3 /* tmp */
            ixor
            iastore
        12: .line 223
            aload 1 /* a */
            iconst_2
            dup2
            iaload
            iload 3 /* tmp */
            ixor
            iastore
        13: .line 224
            return
        end local 3 // int tmp
        end local 2 // int[] k
        end local 1 // int[] a
        end local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lorg/bouncycastle/crypto/engines/NoekeonEngine;
            0   14     1     a  [I
            0   14     2     k  [I
            1   14     3   tmp  I
            5    9     4     i  I
    MethodParameters:
      Name  Flags
      a     
      k     

  private void pi1(int[]);
    descriptor: ([I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
        start local 1 // int[] a
         0: .line 228
            aload 1 /* a */
            iconst_1
            aload 0 /* this */
            aload 1 /* a */
            iconst_1
            iaload
            iconst_1
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
            iastore
         1: .line 229
            aload 1 /* a */
            iconst_2
            aload 0 /* this */
            aload 1 /* a */
            iconst_2
            iaload
            iconst_5
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
            iastore
         2: .line 230
            aload 1 /* a */
            iconst_3
            aload 0 /* this */
            aload 1 /* a */
            iconst_3
            iaload
            iconst_2
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
            iastore
         3: .line 231
            return
        end local 1 // int[] a
        end local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/bouncycastle/crypto/engines/NoekeonEngine;
            0    4     1     a  [I
    MethodParameters:
      Name  Flags
      a     

  private void pi2(int[]);
    descriptor: ([I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
        start local 1 // int[] a
         0: .line 235
            aload 1 /* a */
            iconst_1
            aload 0 /* this */
            aload 1 /* a */
            iconst_1
            iaload
            bipush 31
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
            iastore
         1: .line 236
            aload 1 /* a */
            iconst_2
            aload 0 /* this */
            aload 1 /* a */
            iconst_2
            iaload
            bipush 27
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
            iastore
         2: .line 237
            aload 1 /* a */
            iconst_3
            aload 0 /* this */
            aload 1 /* a */
            iconst_3
            iaload
            bipush 30
            invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
            iastore
         3: .line 238
            return
        end local 1 // int[] a
        end local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/bouncycastle/crypto/engines/NoekeonEngine;
            0    4     1     a  [I
    MethodParameters:
      Name  Flags
      a     

  private int bytesToIntBig(byte[], int);
    descriptor: ([BI)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
        start local 1 // byte[] in
        start local 2 // int off
         0: .line 244
            aload 1 /* in */
            iload 2 /* off */
            iinc 2 /* off */ 1
            baload
            bipush 24
            ishl
         1: .line 245
            aload 1 /* in */
            iload 2 /* off */
            iinc 2 /* off */ 1
            baload
            sipush 255
            iand
            bipush 16
            ishl
         2: .line 244
            ior
         3: .line 246
            aload 1 /* in */
            iload 2 /* off */
            iinc 2 /* off */ 1
            baload
            sipush 255
            iand
            bipush 8
            ishl
         4: .line 244
            ior
         5: .line 247
            aload 1 /* in */
            iload 2 /* off */
            baload
            sipush 255
            iand
         6: .line 244
            ior
            ireturn
        end local 2 // int off
        end local 1 // byte[] in
        end local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/bouncycastle/crypto/engines/NoekeonEngine;
            0    7     1    in  [B
            0    7     2   off  I
    MethodParameters:
      Name  Flags
      in    
      off   

  private void intToBytesBig(int, byte[], int);
    descriptor: (I[BI)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
        start local 1 // int x
        start local 2 // byte[] out
        start local 3 // int off
         0: .line 252
            aload 2 /* out */
            iload 3 /* off */
            iinc 3 /* off */ 1
            iload 1 /* x */
            bipush 24
            iushr
            i2b
            bastore
         1: .line 253
            aload 2 /* out */
            iload 3 /* off */
            iinc 3 /* off */ 1
            iload 1 /* x */
            bipush 16
            iushr
            i2b
            bastore
         2: .line 254
            aload 2 /* out */
            iload 3 /* off */
            iinc 3 /* off */ 1
            iload 1 /* x */
            bipush 8
            iushr
            i2b
            bastore
         3: .line 255
            aload 2 /* out */
            iload 3 /* off */
            iload 1 /* x */
            i2b
            bastore
         4: .line 256
            return
        end local 3 // int off
        end local 2 // byte[] out
        end local 1 // int x
        end local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/bouncycastle/crypto/engines/NoekeonEngine;
            0    5     1     x  I
            0    5     2   out  [B
            0    5     3   off  I
    MethodParameters:
      Name  Flags
      x     
      out   
      off   

  private int rotl(int, int);
    descriptor: (II)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
        start local 1 // int x
        start local 2 // int y
         0: .line 260
            iload 1 /* x */
            iload 2 /* y */
            ishl
            iload 1 /* x */
            bipush 32
            iload 2 /* y */
            isub
            iushr
            ior
            ireturn
        end local 2 // int y
        end local 1 // int x
        end local 0 // org.bouncycastle.crypto.engines.NoekeonEngine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/engines/NoekeonEngine;
            0    1     1     x  I
            0    1     2     y  I
    MethodParameters:
      Name  Flags
      x     
      y     
}
SourceFile: "NoekeonEngine.java"