Bugfixed, now works prima (RST).
(byte[] buffer, int length)
| 292 | * Bugfixed, now works prima (RST). |
| 293 | */ |
| 294 | public static int Com_BlockChecksum(byte[] buffer, int length) { |
| 295 | |
| 296 | int val; |
| 297 | MD4 md4 = new MD4(); |
| 298 | |
| 299 | md4.engineUpdate(buffer, 0, length); |
| 300 | byte data[] = md4.engineDigest(); |
| 301 | ByteBuffer bb = ByteBuffer.wrap(data); |
| 302 | bb.order(ByteOrder.LITTLE_ENDIAN); |
| 303 | val = bb.getInt() ^ bb.getInt() ^ bb.getInt() ^ bb.getInt(); |
| 304 | return val; |
| 305 | } |
| 306 | } |