Tutorials
API Documentation
hash_compute_i16()
hash_murmur2_u8()
hash_compute3()
hash_compute_str()
hash_compute_i32()
hash_compute_u16()
hash_compute_u32()
hash_compute_i8()
Compute hash value for int16_t data.
data (List[int]) – Input data
initval (int) – Initial value for hash computation
Computed hash value
int
Compute hash value using Murmur2 for uint8_t data.
data (bytes or bytearray) – Input data
Compute a new hash from 3 previous hash values.
a (int) – First hash value
b (int) – Second hash value
c (int) – Third hash value
Combined hash value
Compute hash value for a string.
s (str) – Input string
Compute hash value for int32_t data.
Compute hash value for uint16_t data.
Compute hash value for uint32_t data.
Compute hash value for int8_t data.