CRC32 in PHP & Python

业务需要PHP和Python共享Memcache,因此自己实现了一个memcache的hash规则,用CRC32。但是突然发现Pyhton2.x的binascii.crc32的范围有负数。因此写了一个测试脚本来验证:

<?PHP
$chars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_-+=';
while(True) {
    $len = rand(1,20);
    $key = '';
    for( $i=0;$i<$len;$i++)
        $key .= substr( $chars, rand(0,strlen($chars)),1);
    print( $key. ",". crc32($key) . "\n" );
}

# python
import binascii
if __name__=="__main__":
    import sys
    while True:
        line =sys.stdin.readline()
        if not line: break
        line = line.strip()
        a,b = line.split(',',1)
        crc32 = binascii.crc32(a) & 0xFFFFFFFF
        if str(crc32) != b:
            print a,b,crc32

执行:
php crc32.php | python crc32.py

没有输出就对了!

你可能感兴趣的:(PHP,python,hash,CRC32)