| 84 | uint64_t siphash_nocase(const uint8_t *in, const size_t inlen, const uint8_t *k); |
| 85 | |
| 86 | uint64_t dictGenHashFunction(const void *key, int len) { |
| 87 | return siphash(key,len,dict_hash_function_seed); |
| 88 | } |
| 89 | |
| 90 | uint64_t dictGenCaseHashFunction(const unsigned char *buf, int len) { |
| 91 | return siphash_nocase(buf,len,dict_hash_function_seed); |
no test coverage detected