(byte[] bytes, int len)
| 108 | } |
| 109 | |
| 110 | public static final byte[] shiftRight(byte[] bytes, int len) { |
| 111 | byte[] bytes2 = new byte[len]; |
| 112 | System.arraycopy(bytes, 0, bytes2, 1, len-1); |
| 113 | return bytes2; |
| 114 | } |
| 115 | |
| 116 | public static final byte[] shiftLeft(byte[] bytes, int len) { |
| 117 | byte[] bytes2 = new byte[len]; |
no outgoing calls
no test coverage detected