(byte[] xor)
| 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) { |
nothing calls this directly
no outgoing calls
no test coverage detected