MCPcopy Index your code
hub / github.com/CDSecLab/MJXT / bytesToLong

Method bytesToLong

src/main/java/utils/tool.java:5–13  ·  view source on GitHub ↗
(byte[] bytes)

Source from the content-addressed store, hash-verified

3public class tool {
4
5 public static long bytesToLong(byte[] bytes) {
6 long num = 0;
7 int len = bytes.length;
8 for (int ix = 0; ix < 8; ++ix) {
9 num <<= 8;
10 num |= (bytes[len - ix - 1] & 0xff);
11 }
12 return num;
13 }
14
15 public static byte[] longToBytes(long num) {
16 byte[] byteNum = new byte[8];

Callers 8

constructMethod · 0.80
constructMethod · 0.80
constructMethod · 0.80
searchMethod · 0.80
searchMethod · 0.80
searchMethod · 0.80
searchMethod · 0.80
searchMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected