src/hashkit: apply clang-format
[awesomized/libmemcached] / src / libhashkit / algorithm.cc
1 /*
2 +--------------------------------------------------------------------+
3 | libmemcached - C/C++ Client Library for memcached |
4 +--------------------------------------------------------------------+
5 | Redistribution and use in source and binary forms, with or without |
6 | modification, are permitted under the terms of the BSD license. |
7 | You should have received a copy of the license in a bundled file |
8 | named LICENSE; in case you did not receive a copy you can review |
9 | the terms online at: https://opensource.org/licenses/BSD-3-Clause |
10 +--------------------------------------------------------------------+
11 | Copyright (c) 2006-2014 Brian Aker https://datadifferential.com/ |
12 | Copyright (c) 2020 Michael Wallner <mike@php.net> |
13 +--------------------------------------------------------------------+
14 */
15
16 #include "libhashkit/common.h"
17
18 uint32_t libhashkit_one_at_a_time(const char *key, size_t key_length) {
19 return hashkit_one_at_a_time(key, key_length, NULL);
20 }
21
22 uint32_t libhashkit_fnv1_64(const char *key, size_t key_length) {
23 return hashkit_fnv1_64(key, key_length, NULL);
24 }
25
26 uint32_t libhashkit_fnv1a_64(const char *key, size_t key_length) {
27 return hashkit_fnv1a_64(key, key_length, NULL);
28 }
29
30 uint32_t libhashkit_fnv1_32(const char *key, size_t key_length) {
31 return hashkit_fnv1_32(key, key_length, NULL);
32 }
33
34 uint32_t libhashkit_fnv1a_32(const char *key, size_t key_length) {
35 return hashkit_fnv1a_32(key, key_length, NULL);
36 }
37
38 uint32_t libhashkit_crc32(const char *key, size_t key_length) {
39 return hashkit_crc32(key, key_length, NULL);
40 }
41
42 uint32_t libhashkit_hsieh(const char *key, size_t key_length) {
43 return hashkit_hsieh(key, key_length, NULL);
44 }
45
46 uint32_t libhashkit_murmur3(const char *key, size_t key_length) {
47 return hashkit_murmur3(key, key_length, NULL);
48 }
49
50 uint32_t libhashkit_murmur(const char *key, size_t key_length) {
51 return hashkit_murmur(key, key_length, NULL);
52 }
53
54 uint32_t libhashkit_jenkins(const char *key, size_t key_length) {
55 return hashkit_jenkins(key, key_length, NULL);
56 }
57
58 uint32_t libhashkit_md5(const char *key, size_t key_length) {
59 return hashkit_md5(key, key_length, NULL);
60 }
61
62 void libhashkit_md5_signature(const unsigned char *key, size_t length, unsigned char *result) {
63 md5_signature(key, (uint32_t) length, result);
64 }