aboutsummaryrefslogtreecommitdiff
path: root/src/algo/hash.h
blob: 2b168b9e699e66ad8bf211f460d2d3be27906df6 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef CRYPTOBENCH_SRC_ALGO_HASH_H
#define CRYPTOBENCH_SRC_ALGO_HASH_H

#include <stddef.h>
#include <stdint.h>

uint64_t xor64_hash(uint64_t const *const bytes, size_t size);
uint64_t djb2_hash(char const *const bytes, size_t size);

#endif