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

Private GIT Repository
new
[Cipher_code.git] / IDA_new / gf-complete / include / gf_w32.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_w32.h
7  *
8  * Defines and data structures for 32-bit Galois fields
9  */
10
11 #ifndef GF_COMPLETE_GF_W32_H
12 #define GF_COMPLETE_GF_W32_H
13
14 #include <stdint.h>
15
16 #define GF_FIELD_WIDTH (32)
17 #define GF_FIRST_BIT ((gf_val_32_t)1 << 31)
18
19 #define GF_BASE_FIELD_WIDTH (16)
20 #define GF_BASE_FIELD_SIZE       (1 << GF_BASE_FIELD_WIDTH)
21 #define GF_BASE_FIELD_GROUP_SIZE  GF_BASE_FIELD_SIZE-1
22 #define GF_MULTBY_TWO(p) (((p) & GF_FIRST_BIT) ? (((p) << 1) ^ h->prim_poly) : (p) << 1)
23
24 struct gf_split_2_32_lazy_data {
25     uint32_t      tables[16][4];
26     uint32_t      last_value;
27 };
28
29 struct gf_w32_split_8_8_data {
30     uint32_t      tables[7][256][256];
31     uint32_t      region_tables[4][256];
32     uint32_t      last_value;
33 };
34
35 struct gf_w32_group_data {
36     uint32_t *reduce;
37     uint32_t *shift;
38     int      tshift;
39     uint64_t rmask;
40     uint32_t *memory;
41 };
42
43 struct gf_split_16_32_lazy_data {
44     uint32_t      tables[2][(1<<16)];
45     uint32_t      last_value;
46 };
47
48 struct gf_split_8_32_lazy_data {
49     uint32_t      tables[4][256];
50     uint32_t      last_value;
51 };
52
53 struct gf_split_4_32_lazy_data {
54     uint32_t      tables[8][16];
55     uint32_t      last_value;
56 };
57
58 struct gf_w32_bytwo_data {
59     uint64_t prim_poly;
60     uint64_t mask1;
61     uint64_t mask2;
62 };
63
64 struct gf_w32_composite_data {
65   uint16_t *log;
66   uint16_t *alog;
67 };
68
69 void gf_w32_neon_split_init(gf_t *gf);
70
71 #endif /* GF_COMPLETE_GF_W32_H */