Currently I am trying to decode data (using lua). Data I have is 64 bit hexadecimal (big endian).
That specific number needs to be converted to little endian. Beside that other bitwise operations are going to be applied later based on the internal logic.
Now, initially I thought that things are going to be easy, having in mind that I can use bitop and simply apply any bitwise operations I would like to.
Now, unfortunately, I have (and please make a note that I am not able to change this), 32 bit lua compiler, hence, I am not simply able to use these operations.
There are 2 questions which I would like to ask:
If i have hex
800A000000000000
how can I use 32 bitwise operations (specifically in this case operations like bit.bswap, bit.rshift, bit.lshift from the library i shared above) on this hexadecimal number? Is it possible to split this number on 2 parts, and then apply operations on each of them and then merge them together again? If that is the case, how?- Do you have any good reference (like a good book) which I can use to familiarize myself with algorithms and what I can do and what I cannot when we are talking about bitwise operations (expecially representing huge numbers using multiple small chunks )
Prior asking this question, I found and read other references to the same subject, but all of them are more related with specific cases (which is hard to understand unless you are familiar with the subject):