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: iconst_4
newarray 10
1: putstatic org.bouncycastle.crypto.engines.NoekeonEngine.nullVector:[I
2: bipush 17
newarray 10
dup
iconst_0
3: 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: 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: 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: 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: sipush 212
iastore
8: putstatic org.bouncycastle.crypto.engines.NoekeonEngine.roundConstants:[I
9: 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 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
iconst_4
newarray 10
putfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
2: aload 0
iconst_4
newarray 10
putfield org.bouncycastle.crypto.engines.NoekeonEngine.subKeys:[I
3: aload 0
iconst_4
newarray 10
putfield org.bouncycastle.crypto.engines.NoekeonEngine.decryptKeys:[I
4: aload 0
iconst_0
putfield org.bouncycastle.crypto.engines.NoekeonEngine._initialised:Z
5: return
end local 0 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 0: ldc "Noekeon"
areturn
end local 0 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 0: bipush 16
ireturn
end local 0 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 start local 1 start local 2 0: aload 2
instanceof org.bouncycastle.crypto.params.KeyParameter
ifne 2
1: 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
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: StackMap locals:
StackMap stack:
aload 0
iload 1
putfield org.bouncycastle.crypto.engines.NoekeonEngine._forEncryption:Z
3: aload 0
iconst_1
putfield org.bouncycastle.crypto.engines.NoekeonEngine._initialised:Z
4: aload 2
checkcast org.bouncycastle.crypto.params.KeyParameter
astore 3
start local 3 5: aload 0
aload 3
invokevirtual org.bouncycastle.crypto.params.KeyParameter.getKey:()[B
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.setKey:([B)V
6: return
end local 3 end local 2 end local 1 end local 0 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 start local 1 start local 2 start local 3 start local 4 0: aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine._initialised:Z
ifne 2
1: new java.lang.IllegalStateException
dup
new java.lang.StringBuilder
dup
aload 0
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: StackMap locals:
StackMap stack:
iload 2
bipush 16
iadd
aload 1
arraylength
if_icmple 4
3: new org.bouncycastle.crypto.DataLengthException
dup
ldc "input buffer too short"
invokespecial org.bouncycastle.crypto.DataLengthException.<init>:(Ljava/lang/String;)V
athrow
4: StackMap locals:
StackMap stack:
iload 4
bipush 16
iadd
aload 3
arraylength
if_icmple 6
5: new org.bouncycastle.crypto.DataLengthException
dup
ldc "output buffer too short"
invokespecial org.bouncycastle.crypto.DataLengthException.<init>:(Ljava/lang/String;)V
athrow
6: StackMap locals:
StackMap stack:
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine._forEncryption:Z
ifeq 7
aload 0
aload 1
iload 2
aload 3
iload 4
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.encryptBlock:([BI[BI)I
goto 8
7: StackMap locals:
StackMap stack:
aload 0
aload 1
iload 2
aload 3
iload 4
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.decryptBlock:([BI[BI)I
8: StackMap locals:
StackMap stack: int
ireturn
end local 4 end local 3 end local 2 end local 1 end local 0 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 0: return
end local 0 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 start local 1 0: aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.subKeys:[I
iconst_0
aload 0
aload 1
iconst_0
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
iastore
1: aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.subKeys:[I
iconst_1
aload 0
aload 1
iconst_4
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
iastore
2: aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.subKeys:[I
iconst_2
aload 0
aload 1
bipush 8
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
iastore
3: aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.subKeys:[I
iconst_3
aload 0
aload 1
bipush 12
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
iastore
4: return
end local 1 end local 0 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 start local 1 start local 2 start local 3 start local 4 0: aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_0
aload 0
aload 1
iload 2
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
iastore
1: aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_1
aload 0
aload 1
iload 2
iconst_4
iadd
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
iastore
2: aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_2
aload 0
aload 1
iload 2
bipush 8
iadd
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
iastore
3: aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_3
aload 0
aload 1
iload 2
bipush 12
iadd
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
iastore
4: iconst_0
istore 5
start local 5 5: goto 12
6: StackMap locals: int
StackMap stack:
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_0
dup2
iaload
getstatic org.bouncycastle.crypto.engines.NoekeonEngine.roundConstants:[I
iload 5
iaload
ixor
iastore
7: aload 0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.subKeys:[I
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.theta:([I[I)V
8: aload 0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.pi1:([I)V
9: aload 0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.gamma:([I)V
10: aload 0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.pi2:([I)V
11: iinc 5 1
StackMap locals:
StackMap stack:
12: iload 5
bipush 16
if_icmplt 6
13: aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_0
dup2
iaload
getstatic org.bouncycastle.crypto.engines.NoekeonEngine.roundConstants:[I
iload 5
iaload
ixor
iastore
14: aload 0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.subKeys:[I
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.theta:([I[I)V
15: aload 0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_0
iaload
aload 3
iload 4
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.intToBytesBig:(I[BI)V
16: aload 0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_1
iaload
aload 3
iload 4
iconst_4
iadd
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.intToBytesBig:(I[BI)V
17: aload 0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_2
iaload
aload 3
iload 4
bipush 8
iadd
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.intToBytesBig:(I[BI)V
18: aload 0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_3
iaload
aload 3
iload 4
bipush 12
iadd
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.intToBytesBig:(I[BI)V
19: bipush 16
ireturn
end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 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 start local 1 start local 2 start local 3 start local 4 0: aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_0
aload 0
aload 1
iload 2
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
iastore
1: aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_1
aload 0
aload 1
iload 2
iconst_4
iadd
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
iastore
2: aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_2
aload 0
aload 1
iload 2
bipush 8
iadd
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
iastore
3: aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_3
aload 0
aload 1
iload 2
bipush 12
iadd
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.bytesToIntBig:([BI)I
iastore
4: aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.subKeys:[I
iconst_0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.decryptKeys:[I
iconst_0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.subKeys:[I
arraylength
invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
5: aload 0
aload 0
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: bipush 16
istore 5
start local 5 7: goto 14
8: StackMap locals: int
StackMap stack:
aload 0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.decryptKeys:[I
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.theta:([I[I)V
9: aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_0
dup2
iaload
getstatic org.bouncycastle.crypto.engines.NoekeonEngine.roundConstants:[I
iload 5
iaload
ixor
iastore
10: aload 0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.pi1:([I)V
11: aload 0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.gamma:([I)V
12: aload 0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.pi2:([I)V
13: iinc 5 -1
StackMap locals:
StackMap stack:
14: iload 5
ifgt 8
15: aload 0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.decryptKeys:[I
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.theta:([I[I)V
16: aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_0
dup2
iaload
getstatic org.bouncycastle.crypto.engines.NoekeonEngine.roundConstants:[I
iload 5
iaload
ixor
iastore
17: aload 0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_0
iaload
aload 3
iload 4
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.intToBytesBig:(I[BI)V
18: aload 0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_1
iaload
aload 3
iload 4
iconst_4
iadd
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.intToBytesBig:(I[BI)V
19: aload 0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_2
iaload
aload 3
iload 4
bipush 8
iadd
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.intToBytesBig:(I[BI)V
20: aload 0
aload 0
getfield org.bouncycastle.crypto.engines.NoekeonEngine.state:[I
iconst_3
iaload
aload 3
iload 4
bipush 12
iadd
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.intToBytesBig:(I[BI)V
21: bipush 16
ireturn
end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 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 start local 1 0: aload 1
iconst_1
dup2
iaload
aload 1
iconst_3
iaload
iconst_m1
ixor
aload 1
iconst_2
iaload
iconst_m1
ixor
iand
ixor
iastore
1: aload 1
iconst_0
dup2
iaload
aload 1
iconst_2
iaload
aload 1
iconst_1
iaload
iand
ixor
iastore
2: aload 1
iconst_3
iaload
istore 2
start local 2 3: aload 1
iconst_3
aload 1
iconst_0
iaload
iastore
4: aload 1
iconst_0
iload 2
iastore
5: aload 1
iconst_2
dup2
iaload
aload 1
iconst_0
iaload
aload 1
iconst_1
iaload
ixor
aload 1
iconst_3
iaload
ixor
ixor
iastore
6: aload 1
iconst_1
dup2
iaload
aload 1
iconst_3
iaload
iconst_m1
ixor
aload 1
iconst_2
iaload
iconst_m1
ixor
iand
ixor
iastore
7: aload 1
iconst_0
dup2
iaload
aload 1
iconst_2
iaload
aload 1
iconst_1
iaload
iand
ixor
iastore
8: return
end local 2 end local 1 end local 0 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 start local 1 start local 2 0: aload 1
iconst_0
iaload
aload 1
iconst_2
iaload
ixor
istore 3
start local 3 1: iload 3
aload 0
iload 3
bipush 8
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
aload 0
iload 3
bipush 24
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
ixor
ixor
istore 3
2: aload 1
iconst_1
dup2
iaload
iload 3
ixor
iastore
3: aload 1
iconst_3
dup2
iaload
iload 3
ixor
iastore
4: iconst_0
istore 4
start local 4 5: goto 8
6: StackMap locals: int int
StackMap stack:
aload 1
iload 4
dup2
iaload
aload 2
iload 4
iaload
ixor
iastore
7: iinc 4 1
StackMap locals:
StackMap stack:
8: iload 4
iconst_4
if_icmplt 6
end local 4 9: aload 1
iconst_1
iaload
aload 1
iconst_3
iaload
ixor
istore 3
10: iload 3
aload 0
iload 3
bipush 8
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
aload 0
iload 3
bipush 24
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
ixor
ixor
istore 3
11: aload 1
iconst_0
dup2
iaload
iload 3
ixor
iastore
12: aload 1
iconst_2
dup2
iaload
iload 3
ixor
iastore
13: return
end local 3 end local 2 end local 1 end local 0 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 start local 1 0: aload 1
iconst_1
aload 0
aload 1
iconst_1
iaload
iconst_1
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
iastore
1: aload 1
iconst_2
aload 0
aload 1
iconst_2
iaload
iconst_5
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
iastore
2: aload 1
iconst_3
aload 0
aload 1
iconst_3
iaload
iconst_2
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
iastore
3: return
end local 1 end local 0 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 start local 1 0: aload 1
iconst_1
aload 0
aload 1
iconst_1
iaload
bipush 31
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
iastore
1: aload 1
iconst_2
aload 0
aload 1
iconst_2
iaload
bipush 27
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
iastore
2: aload 1
iconst_3
aload 0
aload 1
iconst_3
iaload
bipush 30
invokevirtual org.bouncycastle.crypto.engines.NoekeonEngine.rotl:(II)I
iastore
3: return
end local 1 end local 0 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 start local 1 start local 2 0: aload 1
iload 2
iinc 2 1
baload
bipush 24
ishl
1: aload 1
iload 2
iinc 2 1
baload
sipush 255
iand
bipush 16
ishl
2: ior
3: aload 1
iload 2
iinc 2 1
baload
sipush 255
iand
bipush 8
ishl
4: ior
5: aload 1
iload 2
baload
sipush 255
iand
6: ior
ireturn
end local 2 end local 1 end local 0 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 start local 1 start local 2 start local 3 0: aload 2
iload 3
iinc 3 1
iload 1
bipush 24
iushr
i2b
bastore
1: aload 2
iload 3
iinc 3 1
iload 1
bipush 16
iushr
i2b
bastore
2: aload 2
iload 3
iinc 3 1
iload 1
bipush 8
iushr
i2b
bastore
3: aload 2
iload 3
iload 1
i2b
bastore
4: return
end local 3 end local 2 end local 1 end local 0 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 start local 1 start local 2 0: iload 1
iload 2
ishl
iload 1
bipush 32
iload 2
isub
iushr
ior
ireturn
end local 2 end local 1 end local 0 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"