]> AND Private Git Repository - Cipher_code.git/blob - IDA_new/gf-complete/tools/gf_add.c
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
new
[Cipher_code.git] / IDA_new / gf-complete / tools / gf_add.c
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_add.c
7  *
8  * Adds two numbers in gf_2^w
9  */
10
11 #include <stdio.h>
12 #include <getopt.h>
13 #include <stdint.h>
14 #include <string.h>
15 #include <stdlib.h>
16
17 void usage(char *s)
18 {
19   fprintf(stderr, "usage: gf_add a b w - does addition of a and b in GF(2^w)\n");
20   fprintf(stderr, "       If w has an h on the end, treat a, b and the sum as hexadecimal (no 0x required)\n");
21   fprintf(stderr, "\n");
22   fprintf(stderr, "       legal w are: 1-32, 64 and 128\n");
23   fprintf(stderr, "       128 is hex only (i.e. '128' will be an error - do '128h')\n");
24
25   if (s != NULL) fprintf(stderr, "%s", s);
26   exit(1);
27 }
28
29 int read_128(char *s, uint64_t *v)
30 {
31   int l, t;
32   char save;
33
34   l = strlen(s);
35   if (l > 32) return 0;
36
37   if (l > 16) {
38     if (sscanf(s + (l-16), "%llx", (long long unsigned int *) &(v[1])) == 0) return 0;
39     save = s[l-16];
40     s[l-16] = '\0';
41     t = sscanf(s, "%llx", (long long unsigned int *) &(v[0]));
42     s[l-16] = save;
43     return t;
44   } else {
45     v[0] = 0;
46     return sscanf(s, "%llx", (long long unsigned int *)&(v[1]));
47   }
48   return 1;
49 }
50
51 void print_128(uint64_t *v) 
52 {
53   if (v[0] > 0) {
54     printf("%llx", (long long unsigned int) v[0]);
55     printf("%016llx", (long long unsigned int) v[1]);
56   } else {
57     printf("%llx", (long long unsigned int) v[1]);
58   }
59   printf("\n");
60 }
61
62
63 int main(int argc, char **argv)
64 {
65   int hex, w;
66   uint32_t a, b, c, top;
67   uint64_t a64, b64, c64;
68   uint64_t a128[2], b128[2], c128[2];
69   char *format;
70
71   if (argc != 4) usage(NULL);
72   if (sscanf(argv[3], "%d", &w) == 0) usage("Bad w\n");
73
74   if (w <= 0 || (w > 32 && w != 64 && w != 128)) usage("Bad w");
75
76   hex = (strchr(argv[3], 'h') != NULL);
77
78   if (!hex && w == 128) usage(NULL);
79  
80   if (w <= 32) {
81     format = (hex) ? "%x" : "%u";
82     if (sscanf(argv[1], format, &a) == 0) usage("Bad a\n");
83     if (sscanf(argv[2], format, &b) == 0) usage("Bad b\n");
84
85     if (w < 32) {
86       top = (w == 31) ? 0x80000000 : (1 << w);
87       if (w != 32 && a >= top) usage("a is too large\n");
88       if (w != 32 && b >= top) usage("b is too large\n");
89     }
90   
91     c = a ^ b;
92     printf(format, c);
93     printf("\n");
94
95   } else if (w == 64) {
96     format = (hex) ? "%llx" : "%llu";
97     if (sscanf(argv[1], format, &a64) == 0) usage("Bad a\n");
98     if (sscanf(argv[2], format, &b64) == 0) usage("Bad b\n");
99     c64 = a64 ^ b64;
100
101     printf(format, c64);
102     printf("\n");
103
104   } else if (w == 128) {
105
106     if (read_128(argv[1], a128) == 0) usage("Bad a\n");
107     if (read_128(argv[2], b128) == 0) usage("Bad b\n");
108     c128[0] = a128[0] ^ b128[0];
109     c128[1] = a128[1] ^ b128[1];
110
111     print_128(c128);
112   }
113   exit(0);
114 }