This commit is contained in:
Syping 2020-10-25 16:30:05 +01:00
parent 5902743b45
commit 8bc5b6d6dc
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ uint32_t checkbrute_hash32(unsigned char* data, size_t size)
hash += hash << 3;
hash ^= hash >> 11;
hash += hash << 15;
return hash;
return hash & 0xffffffffL;
}
int checkbrute_hashsz()