#ifndef CRYPTOBENCH_SRC_ALGO_HASH_H #define CRYPTOBENCH_SRC_ALGO_HASH_H #include #include uint64_t xor64_hash(uint64_t const *const bytes, size_t size); uint64_t djb2_hash(char const *const bytes, size_t size); #endif