I port the process to Java. There are already working versions in C # and C ++.
I have a section in C # that I am doing Marshal.Copy (...) to convert 64 ulongs to 512 bytes, and this C ++ line I use memmove (...) to do the same. What is available in Java to achieve the same result? I need the same binary information in the same order as bytes instead of longs.
Edit:
The reason I'm porting to Java is to use the portability that Java naturally has. I would not want to use my own code.
Another thing. Since Java does not contain unsigned values, I need to slightly modify what I request. I would like to get 8 unsigned byte values ββfrom each of 64 lengths (ulongs in C # and C ++), to subsequently use these values ββin indexes in arrays. This has to happen thousands of times, so the fastest way is the best way.
java porting
Corey Ogburn Feb 06 2018-10-06T00 : 00Z
source share