JavaのCRC32ライブラリで計算されたチェックサムに問題があります。 だから、クライアントはそう.... /**
* Increments current packet message number, selects a
* random destination, and sends the packet.
* @param connection
* @throws Interrupt
JavaでCRC32の衝突を見つけようとしていて、pycrcでハッシュをチェックしています。私はthisスレッドで説明されたものを試しましたが、私はまだpycrcと一致する実装を得ることができません。私は間違って何をしていますか? public static void print() {
Checksum h = new CRC32();
Map<Long, String>
crc_table = None
def make_crc_table():
global crc_table
crc_table = [0] * 256
for n in xrange(256):
c = n
for k in xrange(8):
if c & 1:
c = 0xedb88320L^(c >> 1)