// 非加密型hash,速度极快,支持种子 uint32_t murmur3_32(const char *key, size_t len, uint32_t seed) { for(uint32_t i=0; i> 15; } return seed; }