]> AND Private Git Repository - Cipher_code.git/blob - IDA_new/gf-complete/include/gf_w64.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
update
[Cipher_code.git] / IDA_new / gf-complete / include / gf_w64.h
1 /*
2  * GF-Complete: A Comprehensive Open Source Library for Galois Field Arithmetic
3  * James S. Plank, Ethan L. Miller, Kevin M. Greenan,
4  * Benjamin A. Arnold, John A. Burnum, Adam W. Disney, Allen C. McBride.
5  *
6  * gf_w64.h
7  *
8  * Defines and data structures for 64-bit Galois fields
9  */
10
11 #ifndef GF_COMPLETE_GF_W64_H
12 #define GF_COMPLETE_GF_W64_H
13
14 #include <stdint.h>
15
16 #define GF_FIELD_WIDTH (64)
17 #define GF_FIRST_BIT (1ULL << 63)
18
19 #define GF_BASE_FIELD_WIDTH (32)
20 #define GF_BASE_FIELD_SIZE       (1ULL << GF_BASE_FIELD_WIDTH)
21 #define GF_BASE_FIELD_GROUP_SIZE  GF_BASE_FIELD_SIZE-1
22
23 struct gf_w64_group_data {
24     uint64_t *reduce;
25     uint64_t *shift;
26     uint64_t *memory;
27 };
28
29 struct gf_split_4_64_lazy_data {
30     uint64_t      tables[16][16];
31     uint64_t      last_value;
32 };
33
34 struct gf_split_8_64_lazy_data {
35     uint64_t      tables[8][(1<<8)];
36     uint64_t      last_value;
37 };
38
39 struct gf_split_16_64_lazy_data {
40     uint64_t      tables[4][(1<<16)];
41     uint64_t      last_value;
42 };
43
44 struct gf_split_8_8_data {
45     uint64_t      tables[15][256][256];
46 };
47
48 void gf_w64_neon_split_init(gf_t *gf);
49
50 #endif /* GF_COMPLETE_GF_W64_H */