21 h[j] = ((h[j] << 7) | (h[j-1] >> 1)) + h[j];
25 h[0] = (h[0] << 7) + h[0] + *s++;
void coap_hash_impl(const unsigned char *s, size_t len, coap_key_t h)
Calculates a fast hash over the given string s of length len and stores the result into h.
unsigned char coap_key_t[4]
Pulls together all the internal only header files.