MCPcopy Create free account
hub / github.com/CDSecLab/MJXT / Xor_Empty

Method Xor_Empty

src/main/java/utils/tool.java:24–32  ·  view source on GitHub ↗
(byte[] xor)

Source from the content-addressed store, hash-verified

22 }
23
24 public static boolean Xor_Empty(byte[] xor) {
25 for (int i = 0; i < xor.length; i++) {
26 if (xor[i] == 0) {
27 continue;
28 } else
29 return false;
30 }
31 return true;
32 }
33
34
35 public static byte[] Xor(byte[] x, byte[] y) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected