X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libhashkit%2Falgorithm.h;h=ec8b10f2ed84b5149ea24db7939389a66e5a4024;hb=HEAD;hp=58b40bc3cbeef2344b85b0dcfc910adf68d549f1;hpb=0d10cdff62a071e3e8a23276cde35fb9368541d4;p=awesomized%2Flibmemcached diff --git a/libhashkit/algorithm.h b/libhashkit/algorithm.h deleted file mode 100644 index 58b40bc3..00000000 --- a/libhashkit/algorithm.h +++ /dev/null @@ -1,93 +0,0 @@ -/* HashKit - * Copyright (C) 2009 Brian Aker - * All rights reserved. - * - * Use and distribution licensed under the BSD license. See - * the COPYING file in the parent directory for full text. - */ - -/** - * @file - * @brief HashKit Header - */ - -#pragma once - -#ifdef __cplusplus -extern "C" { -#endif - -HASHKIT_API -uint32_t libhashkit_one_at_a_time(const char *key, size_t key_length); - -HASHKIT_API -uint32_t libhashkit_fnv1_64(const char *key, size_t key_length); - -HASHKIT_API -uint32_t libhashkit_fnv1a_64(const char *key, size_t key_length); - -HASHKIT_API -uint32_t libhashkit_fnv1_32(const char *key, size_t key_length); - -HASHKIT_API -uint32_t libhashkit_fnv1a_32(const char *key, size_t key_length); - -HASHKIT_API -uint32_t libhashkit_crc32(const char *key, size_t key_length); - -#ifdef HAVE_HSIEH_HASH -HASHKIT_API -uint32_t libhashkit_hsieh(const char *key, size_t key_length); -#endif - -#ifdef HAVE_MURMUR_HASH -HASHKIT_API -uint32_t libhashkit_murmur(const char *key, size_t key_length); -#endif - -HASHKIT_API -uint32_t libhashkit_jenkins(const char *key, size_t key_length); - -HASHKIT_API -uint32_t libhashkit_md5(const char *key, size_t key_length); - -HASHKIT_LOCAL -uint32_t hashkit_one_at_a_time(const char *key, size_t key_length, void *context); - -HASHKIT_LOCAL -uint32_t hashkit_fnv1_64(const char *key, size_t key_length, void *context); - -HASHKIT_LOCAL -uint32_t hashkit_fnv1a_64(const char *key, size_t key_length, void *context); - -HASHKIT_LOCAL -uint32_t hashkit_fnv1_32(const char *key, size_t key_length, void *context); - -HASHKIT_LOCAL -uint32_t hashkit_fnv1a_32(const char *key, size_t key_length, void *context); - -HASHKIT_LOCAL -uint32_t hashkit_crc32(const char *key, size_t key_length, void *context); - -#ifdef HAVE_HSIEH_HASH -HASHKIT_LOCAL -uint32_t hashkit_hsieh(const char *key, size_t key_length, void *context); -#endif - -#ifdef HAVE_MURMUR_HASH -HASHKIT_LOCAL -uint32_t hashkit_murmur(const char *key, size_t key_length, void *context); -#endif - -HASHKIT_LOCAL -uint32_t hashkit_jenkins(const char *key, size_t key_length, void *context); - -HASHKIT_LOCAL -uint32_t hashkit_md5(const char *key, size_t key_length, void *context); - -HASHKIT_API -void libhashkit_md5_signature(const unsigned char *key, size_t length, unsigned char *result); - -#ifdef __cplusplus -} -#endif