forked from JonathanSalwan/Tigress_protection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample15.h
40 lines (31 loc) · 820 Bytes
/
sample15.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* Jody Bruchon's fast hashing function (headers)
* See jody_hash.c for license information */
#ifndef JODY_HASH_H
#define JODY_HASH_H
#ifdef __cplusplus
extern "C" {
#endif
/* Required for uint64_t */
#include <stdint.h>
/* Width of a jody_hash. Changing this will also require
* changing the width of tail masks to match. */
#ifndef JODY_HASH_WIDTH
#define JODY_HASH_WIDTH 64
#endif
#if JODY_HASH_WIDTH == 64
typedef uint64_t hash_t;
#endif
#if JODY_HASH_WIDTH == 32
typedef uint32_t hash_t;
#endif
#if JODY_HASH_WIDTH == 16
typedef uint16_t hash_t;
#endif
/* Version increments when algorithm changes incompatibly */
#define JODY_HASH_VERSION 5
extern hash_t jody_block_hash(const hash_t * restrict data,
const hash_t start_hash, const size_t count);
#ifdef __cplusplus
}
#endif
#endif /* JODY_HASH_H */