380950e96dd81c736a330b1fd607cb634a4bc07b
[m6w6/libmemcached] / libhashkit / algorithm.c
1 /* HashKit
2 * Copyright (C) 2006-2009 Brian Aker
3 * All rights reserved.
4 *
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
7 */
8
9 #include "common.h"
10
11 uint32_t libhashkit_one_at_a_time(const char *key, size_t key_length)
12 {
13 return hashkit_one_at_a_time(key, key_length, NULL);
14 }
15
16 uint32_t libhashkit_fnv1_64(const char *key, size_t key_length)
17 {
18 return hashkit_fnv1_64(key, key_length, NULL);
19 }
20
21 uint32_t libhashkit_fnv1a_64(const char *key, size_t key_length)
22 {
23 return hashkit_fnv1a_64(key, key_length, NULL);
24 }
25
26 uint32_t libhashkit_fnv1_32(const char *key, size_t key_length)
27 {
28 return hashkit_fnv1_32(key, key_length, NULL);
29 }
30
31 uint32_t libhashkit_fnv1a_32(const char *key, size_t key_length)
32 {
33 return hashkit_fnv1a_32(key, key_length, NULL);
34 }
35
36 uint32_t libhashkit_crc32(const char *key, size_t key_length)
37 {
38 return hashkit_crc32(key, key_length, NULL);
39 }
40
41 #ifdef HAVE_HSIEH_HASH
42 uint32_t libhashkit_hsieh(const char *key, size_t key_length)
43 {
44 return hashkit_hsieh(key, key_length, NULL);
45 }
46 #endif
47
48 uint32_t libhashkit_murmur(const char *key, size_t key_length)
49 {
50 return hashkit_murmur(key, key_length, NULL);
51 }
52
53 uint32_t libhashkit_jenkins(const char *key, size_t key_length)
54 {
55 return hashkit_jenkins(key, key_length, NULL);
56 }
57
58 uint32_t libhashkit_md5(const char *key, size_t key_length)
59 {
60 return hashkit_md5(key, key_length, NULL);
61 }
62
63 void libhashkit_md5_signature(const unsigned char *key, uint32_t length, unsigned char *result)
64 {
65 md5_signature(key, length, result);
66 }
67