forked from lmcilroy/mrx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
avx_hash.h
48 lines (41 loc) · 1.04 KB
/
avx_hash.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
41
42
43
44
45
46
47
48
#ifdef __cplusplus
extern "C" {
#endif
#include <x86intrin.h>
struct avx_hash_state {
union {
__m256i ints[8];
uint8_t chars[256];
} buf;
uint32_t count;
uint32_t block_size;
uint64_t total_len;
__m256i x1;
__m256i x2;
__m256i x3;
__m256i x4;
__m256i x5;
__m256i x6;
__m256i x7;
__m256i x8;
};
struct avx_hash {
uint64_t h[2];
};
typedef struct avx_hash_state avx_hash_state_t;
typedef struct avx_hash avx_hash_t;
/* Streaming interfaces */
void avx_hash_start(avx_hash_state_t * const state);
void avx_hash_start_seed(avx_hash_state_t * const state,
const void * const seed);
void avx_hash_update(avx_hash_state_t * const state, const void * const data,
const size_t len);
void avx_hash_end(avx_hash_state_t * const state, avx_hash_t * const hash);
/* Convenience routines for single shot hashing */
void avx_hash_seed(const void * const data, const size_t len,
const void * const seed, avx_hash_t * const hash);
void avx_hash(const void * const data, const size_t len,
avx_hash_t * const hash);
#ifdef __cplusplus
}
#endif