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

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

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

  private long[] _S;
    descriptor: [J
    flags: (0x0002) ACC_PRIVATE

  private static final long P64;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -5196783011329398165

  private static final long Q64;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -7046029254386353131

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.bouncycastle.crypto.engines.RC564Engine this
         0: .line 50
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 52
            aload 0 /* this */
            bipush 12
            putfield org.bouncycastle.crypto.engines.RC564Engine._noRounds:I
         2: .line 53
            aload 0 /* this */
            aconst_null
            putfield org.bouncycastle.crypto.engines.RC564Engine._S:[J
         3: .line 54
            return
        end local 0 // org.bouncycastle.crypto.engines.RC564Engine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/bouncycastle/crypto/engines/RC564Engine;

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

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

  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.RC564Engine this
        start local 1 // boolean forEncryption
        start local 2 // org.bouncycastle.crypto.CipherParameters params
         0: .line 78
            aload 2 /* params */
            instanceof org.bouncycastle.crypto.params.RC5Parameters
            ifne 2
         1: .line 80
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "invalid parameter passed to RC564 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 83
      StackMap locals:
      StackMap stack:
            aload 2 /* params */
            checkcast org.bouncycastle.crypto.params.RC5Parameters
            astore 3 /* p */
        start local 3 // org.bouncycastle.crypto.params.RC5Parameters p
         3: .line 85
            aload 0 /* this */
            iload 1 /* forEncryption */
            putfield org.bouncycastle.crypto.engines.RC564Engine.forEncryption:Z
         4: .line 87
            aload 0 /* this */
            aload 3 /* p */
            invokevirtual org.bouncycastle.crypto.params.RC5Parameters.getRounds:()I
            putfield org.bouncycastle.crypto.engines.RC564Engine._noRounds:I
         5: .line 89
            aload 0 /* this */
            aload 3 /* p */
            invokevirtual org.bouncycastle.crypto.params.RC5Parameters.getKey:()[B
            invokevirtual org.bouncycastle.crypto.engines.RC564Engine.setKey:([B)V
         6: .line 90
            return
        end local 3 // org.bouncycastle.crypto.params.RC5Parameters p
        end local 2 // org.bouncycastle.crypto.CipherParameters params
        end local 1 // boolean forEncryption
        end local 0 // org.bouncycastle.crypto.engines.RC564Engine this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lorg/bouncycastle/crypto/engines/RC564Engine;
            0    7     1  forEncryption  Z
            0    7     2         params  Lorg/bouncycastle/crypto/CipherParameters;
            3    7     3              p  Lorg/bouncycastle/crypto/params/RC5Parameters;
    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.RC564Engine this
        start local 1 // byte[] in
        start local 2 // int inOff
        start local 3 // byte[] out
        start local 4 // int outOff
         0: .line 98
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine.forEncryption:Z
            ifeq 1
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOff */
            aload 3 /* out */
            iload 4 /* outOff */
            invokevirtual org.bouncycastle.crypto.engines.RC564Engine.encryptBlock:([BI[BI)I
            goto 2
         1: .line 99
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOff */
            aload 3 /* out */
            iload 4 /* outOff */
            invokevirtual org.bouncycastle.crypto.engines.RC564Engine.decryptBlock:([BI[BI)I
         2: .line 98
      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.RC564Engine this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/bouncycastle/crypto/engines/RC564Engine;
            0    3     1      in  [B
            0    3     2   inOff  I
            0    3     3     out  [B
            0    3     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.RC564Engine this
         0: .line 104
            return
        end local 0 // org.bouncycastle.crypto.engines.RC564Engine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/engines/RC564Engine;

  private void setKey(byte[]);
    descriptor: ([B)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=9, locals=11, args_size=2
        start local 0 // org.bouncycastle.crypto.engines.RC564Engine this
        start local 1 // byte[] key
         0: .line 126
            aload 1 /* key */
            arraylength
            bipush 7
            iadd
            bipush 8
            idiv
            newarray 11
            astore 2 /* L */
        start local 2 // long[] L
         1: .line 128
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 130
      StackMap locals: long[] int
      StackMap stack:
            aload 2 /* L */
            iload 3 /* i */
            bipush 8
            idiv
            dup2
            laload
            aload 1 /* key */
            iload 3 /* i */
            baload
            sipush 255
            iand
            i2l
            bipush 8
            iload 3 /* i */
            bipush 8
            irem
            imul
            lshl
            ladd
            lastore
         4: .line 128
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            aload 1 /* key */
            arraylength
            if_icmpne 3
        end local 3 // int i
         6: .line 139
            aload 0 /* this */
            iconst_2
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._noRounds:I
            iconst_1
            iadd
            imul
            newarray 11
            putfield org.bouncycastle.crypto.engines.RC564Engine._S:[J
         7: .line 141
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._S:[J
            iconst_0
            ldc -5196783011329398165
            lastore
         8: .line 142
            iconst_1
            istore 3 /* i */
        start local 3 // int i
         9: goto 12
        10: .line 144
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._S:[J
            iload 3 /* i */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._S:[J
            iload 3 /* i */
            iconst_1
            isub
            laload
            ldc -7046029254386353131
            ladd
            lastore
        11: .line 142
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 3 /* i */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._S:[J
            arraylength
            if_icmplt 10
        end local 3 // int i
        13: .line 154
            aload 2 /* L */
            arraylength
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._S:[J
            arraylength
            if_icmple 16
        14: .line 156
            iconst_3
            aload 2 /* L */
            arraylength
            imul
            istore 3 /* iter */
        start local 3 // int iter
        15: .line 157
            goto 17
        end local 3 // int iter
        16: .line 160
      StackMap locals:
      StackMap stack:
            iconst_3
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._S:[J
            arraylength
            imul
            istore 3 /* iter */
        start local 3 // int iter
        17: .line 163
      StackMap locals: int
      StackMap stack:
            lconst_0
            lstore 4 /* A */
        start local 4 // long A
        18: lconst_0
            lstore 6 /* B */
        start local 6 // long B
        19: .line 164
            iconst_0
            istore 8 /* i */
        start local 8 // int i
        20: iconst_0
            istore 9 /* j */
        start local 9 // int j
        21: .line 166
            iconst_0
            istore 10 /* k */
        start local 10 // int k
        22: goto 28
        23: .line 168
      StackMap locals: org.bouncycastle.crypto.engines.RC564Engine byte[] long[] int long long int int int
      StackMap stack:
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._S:[J
            iload 8 /* i */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._S:[J
            iload 8 /* i */
            laload
            lload 4 /* A */
            ladd
            lload 6 /* B */
            ladd
            ldc 3
            invokevirtual org.bouncycastle.crypto.engines.RC564Engine.rotateLeft:(JJ)J
            dup2_x2
            lastore
            lstore 4 /* A */
        24: .line 169
            aload 2 /* L */
            iload 9 /* j */
            aload 0 /* this */
            aload 2 /* L */
            iload 9 /* j */
            laload
            lload 4 /* A */
            ladd
            lload 6 /* B */
            ladd
            lload 4 /* A */
            lload 6 /* B */
            ladd
            invokevirtual org.bouncycastle.crypto.engines.RC564Engine.rotateLeft:(JJ)J
            dup2_x2
            lastore
            lstore 6 /* B */
        25: .line 170
            iload 8 /* i */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._S:[J
            arraylength
            irem
            istore 8 /* i */
        26: .line 171
            iload 9 /* j */
            iconst_1
            iadd
            aload 2 /* L */
            arraylength
            irem
            istore 9 /* j */
        27: .line 166
            iinc 10 /* k */ 1
      StackMap locals:
      StackMap stack:
        28: iload 10 /* k */
            iload 3 /* iter */
            if_icmplt 23
        end local 10 // int k
        29: .line 173
            return
        end local 9 // int j
        end local 8 // int i
        end local 6 // long B
        end local 4 // long A
        end local 3 // int iter
        end local 2 // long[] L
        end local 1 // byte[] key
        end local 0 // org.bouncycastle.crypto.engines.RC564Engine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   30     0  this  Lorg/bouncycastle/crypto/engines/RC564Engine;
            0   30     1   key  [B
            1   30     2     L  [J
            2    6     3     i  I
            9   13     3     i  I
           15   16     3  iter  I
           17   30     3  iter  I
           18   30     4     A  J
           19   30     6     B  J
           20   30     8     i  I
           21   30     9     j  I
           22   29    10     k  I
    MethodParameters:
      Name  Flags
      key   

  private int encryptBlock(byte[], int, byte[], int);
    descriptor: ([BI[BI)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=10, args_size=5
        start local 0 // org.bouncycastle.crypto.engines.RC564Engine this
        start local 1 // byte[] in
        start local 2 // int inOff
        start local 3 // byte[] out
        start local 4 // int outOff
         0: .line 190
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOff */
            invokevirtual org.bouncycastle.crypto.engines.RC564Engine.bytesToWord:([BI)J
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._S:[J
            iconst_0
            laload
            ladd
            lstore 5 /* A */
        start local 5 // long A
         1: .line 191
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOff */
            bipush 8
            iadd
            invokevirtual org.bouncycastle.crypto.engines.RC564Engine.bytesToWord:([BI)J
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._S:[J
            iconst_1
            laload
            ladd
            lstore 7 /* B */
        start local 7 // long B
         2: .line 193
            iconst_1
            istore 9 /* i */
        start local 9 // int i
         3: goto 7
         4: .line 195
      StackMap locals: long long int
      StackMap stack:
            aload 0 /* this */
            lload 5 /* A */
            lload 7 /* B */
            lxor
            lload 7 /* B */
            invokevirtual org.bouncycastle.crypto.engines.RC564Engine.rotateLeft:(JJ)J
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._S:[J
            iconst_2
            iload 9 /* i */
            imul
            laload
            ladd
            lstore 5 /* A */
         5: .line 196
            aload 0 /* this */
            lload 7 /* B */
            lload 5 /* A */
            lxor
            lload 5 /* A */
            invokevirtual org.bouncycastle.crypto.engines.RC564Engine.rotateLeft:(JJ)J
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._S:[J
            iconst_2
            iload 9 /* i */
            imul
            iconst_1
            iadd
            laload
            ladd
            lstore 7 /* B */
         6: .line 193
            iinc 9 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 9 /* i */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._noRounds:I
            if_icmple 4
        end local 9 // int i
         8: .line 199
            aload 0 /* this */
            lload 5 /* A */
            aload 3 /* out */
            iload 4 /* outOff */
            invokevirtual org.bouncycastle.crypto.engines.RC564Engine.wordToBytes:(J[BI)V
         9: .line 200
            aload 0 /* this */
            lload 7 /* B */
            aload 3 /* out */
            iload 4 /* outOff */
            bipush 8
            iadd
            invokevirtual org.bouncycastle.crypto.engines.RC564Engine.wordToBytes:(J[BI)V
        10: .line 202
            bipush 16
            ireturn
        end local 7 // long B
        end local 5 // long A
        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.RC564Engine this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lorg/bouncycastle/crypto/engines/RC564Engine;
            0   11     1      in  [B
            0   11     2   inOff  I
            0   11     3     out  [B
            0   11     4  outOff  I
            1   11     5       A  J
            2   11     7       B  J
            3    8     9       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=10, args_size=5
        start local 0 // org.bouncycastle.crypto.engines.RC564Engine this
        start local 1 // byte[] in
        start local 2 // int inOff
        start local 3 // byte[] out
        start local 4 // int outOff
         0: .line 211
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOff */
            invokevirtual org.bouncycastle.crypto.engines.RC564Engine.bytesToWord:([BI)J
            lstore 5 /* A */
        start local 5 // long A
         1: .line 212
            aload 0 /* this */
            aload 1 /* in */
            iload 2 /* inOff */
            bipush 8
            iadd
            invokevirtual org.bouncycastle.crypto.engines.RC564Engine.bytesToWord:([BI)J
            lstore 7 /* B */
        start local 7 // long B
         2: .line 214
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._noRounds:I
            istore 9 /* i */
        start local 9 // int i
         3: goto 7
         4: .line 216
      StackMap locals: long long int
      StackMap stack:
            aload 0 /* this */
            lload 7 /* B */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._S:[J
            iconst_2
            iload 9 /* i */
            imul
            iconst_1
            iadd
            laload
            lsub
            lload 5 /* A */
            invokevirtual org.bouncycastle.crypto.engines.RC564Engine.rotateRight:(JJ)J
            lload 5 /* A */
            lxor
            lstore 7 /* B */
         5: .line 217
            aload 0 /* this */
            lload 5 /* A */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._S:[J
            iconst_2
            iload 9 /* i */
            imul
            laload
            lsub
            lload 7 /* B */
            invokevirtual org.bouncycastle.crypto.engines.RC564Engine.rotateRight:(JJ)J
            lload 7 /* B */
            lxor
            lstore 5 /* A */
         6: .line 214
            iinc 9 /* i */ -1
      StackMap locals:
      StackMap stack:
         7: iload 9 /* i */
            iconst_1
            if_icmpge 4
        end local 9 // int i
         8: .line 220
            aload 0 /* this */
            lload 5 /* A */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._S:[J
            iconst_0
            laload
            lsub
            aload 3 /* out */
            iload 4 /* outOff */
            invokevirtual org.bouncycastle.crypto.engines.RC564Engine.wordToBytes:(J[BI)V
         9: .line 221
            aload 0 /* this */
            lload 7 /* B */
            aload 0 /* this */
            getfield org.bouncycastle.crypto.engines.RC564Engine._S:[J
            iconst_1
            laload
            lsub
            aload 3 /* out */
            iload 4 /* outOff */
            bipush 8
            iadd
            invokevirtual org.bouncycastle.crypto.engines.RC564Engine.wordToBytes:(J[BI)V
        10: .line 223
            bipush 16
            ireturn
        end local 7 // long B
        end local 5 // long A
        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.RC564Engine this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lorg/bouncycastle/crypto/engines/RC564Engine;
            0   11     1      in  [B
            0   11     2   inOff  I
            0   11     3     out  [B
            0   11     4  outOff  I
            1   11     5       A  J
            2   11     7       B  J
            3    8     9       i  I
    MethodParameters:
        Name  Flags
      in      
      inOff   
      out     
      outOff  

  private long rotateLeft(long, long);
    descriptor: (JJ)J
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=10, locals=5, args_size=3
        start local 0 // org.bouncycastle.crypto.engines.RC564Engine this
        start local 1 // long x
        start local 3 // long y
         0: .line 245
            lload 1 /* x */
            lload 3 /* y */
            ldc 63
            land
            l2i
            lshl
            lload 1 /* x */
            ldc 64
            lload 3 /* y */
            ldc 63
            land
            lsub
            l2i
            lushr
            lor
            lreturn
        end local 3 // long y
        end local 1 // long x
        end local 0 // org.bouncycastle.crypto.engines.RC564Engine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/engines/RC564Engine;
            0    1     1     x  J
            0    1     3     y  J
    MethodParameters:
      Name  Flags
      x     
      y     

  private long rotateRight(long, long);
    descriptor: (JJ)J
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=10, locals=5, args_size=3
        start local 0 // org.bouncycastle.crypto.engines.RC564Engine this
        start local 1 // long x
        start local 3 // long y
         0: .line 260
            lload 1 /* x */
            lload 3 /* y */
            ldc 63
            land
            l2i
            lushr
            lload 1 /* x */
            ldc 64
            lload 3 /* y */
            ldc 63
            land
            lsub
            l2i
            lshl
            lor
            lreturn
        end local 3 // long y
        end local 1 // long x
        end local 0 // org.bouncycastle.crypto.engines.RC564Engine this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/bouncycastle/crypto/engines/RC564Engine;
            0    1     1     x  J
            0    1     3     y  J
    MethodParameters:
      Name  Flags
      x     
      y     

  private long bytesToWord(byte[], int);
    descriptor: ([BI)J
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.bouncycastle.crypto.engines.RC564Engine this
        start local 1 // byte[] src
        start local 2 // int srcOff
         0: .line 267
            lconst_0
            lstore 3 /* word */
        start local 3 // long word
         1: .line 269
            bipush 7
            istore 5 /* i */
        start local 5 // int i
         2: goto 5
         3: .line 271
      StackMap locals: long int
      StackMap stack:
            lload 3 /* word */
            bipush 8
            lshl
            aload 1 /* src */
            iload 5 /* i */
            iload 2 /* srcOff */
            iadd
            baload
            sipush 255
            iand
            i2l
            ladd
            lstore 3 /* word */
         4: .line 269
            iinc 5 /* i */ -1
      StackMap locals:
      StackMap stack:
         5: iload 5 /* i */
            ifge 3
        end local 5 // int i
         6: .line 274
            lload 3 /* word */
            lreturn
        end local 3 // long word
        end local 2 // int srcOff
        end local 1 // byte[] src
        end local 0 // org.bouncycastle.crypto.engines.RC564Engine this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/bouncycastle/crypto/engines/RC564Engine;
            0    7     1     src  [B
            0    7     2  srcOff  I
            1    7     3    word  J
            2    6     5       i  I
    MethodParameters:
        Name  Flags
      src     
      srcOff  

  private void wordToBytes(long, byte[], int);
    descriptor: (J[BI)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // org.bouncycastle.crypto.engines.RC564Engine this
        start local 1 // long word
        start local 3 // byte[] dst
        start local 4 // int dstOff
         0: .line 282
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         1: goto 5
         2: .line 284
      StackMap locals: int
      StackMap stack:
            aload 3 /* dst */
            iload 5 /* i */
            iload 4 /* dstOff */
            iadd
            lload 1 /* word */
            l2i
            i2b
            bastore
         3: .line 285
            lload 1 /* word */
            bipush 8
            lushr
            lstore 1 /* word */
         4: .line 282
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 5 /* i */
            bipush 8
            if_icmplt 2
        end local 5 // int i
         6: .line 287
            return
        end local 4 // int dstOff
        end local 3 // byte[] dst
        end local 1 // long word
        end local 0 // org.bouncycastle.crypto.engines.RC564Engine this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/bouncycastle/crypto/engines/RC564Engine;
            0    7     1    word  J
            0    7     3     dst  [B
            0    7     4  dstOff  I
            1    6     5       i  I
    MethodParameters:
        Name  Flags
      word    
      dst     
      dstOff  
}
SourceFile: "RC564Engine.java"