2 * Copyright (C) 2010 Brian Aker
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
9 #ifndef HASHKIT_DIGEST_H
10 #define HASHKIT_DIGEST_H
17 uint32_t hashkit_digest(const hashkit_st
*self
, const char *key
, size_t key_length
);
20 This is a utilitly function provided so that you can directly access hashes with a hashkit_st.
24 uint32_t libhashkit_digest(const char *key
, size_t key_length
, hashkit_hash_algorithm_t hash_algorithm
);
30 #endif /* HASHKIT_DIGEST_H */