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

Private GIT Repository
up
[Cipher_code.git] / IDA_new / gf-complete / examples / gf_example_7.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_example_7.c
7  *
8  * Demonstrating extract_word and Cauchy
9  */
10
11 #include <stdio.h>
12 #include <getopt.h>
13 #include <stdint.h>
14 #include <string.h>
15 #include <stdlib.h>
16 #include <time.h>
17
18 #include "gf_complete.h"
19 #include "gf_rand.h"
20
21 void usage(char *s)
22 {
23   fprintf(stderr, "usage: gf_example_7\n");
24   exit(1);
25 }
26
27 int main(int argc, char **argv)
28 {
29   uint8_t *a, *b;
30   int i, j;
31   gf_t gf;
32
33   if (gf_init_hard(&gf, 3, GF_MULT_TABLE, GF_REGION_CAUCHY, GF_DIVIDE_DEFAULT, 0, 0, 0, NULL, NULL) == 0) {
34     fprintf(stderr, "gf_init_hard failed\n");
35     exit(1);
36   }
37
38   a = (uint8_t *) malloc(3);
39   b = (uint8_t *) malloc(3);
40
41   MOA_Seed(0);
42
43   for (i = 0; i < 3; i++) a[i] = MOA_Random_W(8, 1);
44
45   gf.multiply_region.w32(&gf, a, b, 5, 3, 0);
46
47   printf("a: 0x%lx    b: 0x%lx\n", (unsigned long) a, (unsigned long) b);
48
49   printf("\n");
50   printf("a: 0x%02x 0x%02x 0x%02x\n", a[0], a[1], a[2]);
51   printf("b: 0x%02x 0x%02x 0x%02x\n", b[0], b[1], b[2]);
52   printf("\n");
53
54   printf("a bits:");
55   for (i = 0; i < 3; i++) {
56     printf(" ");
57     for (j = 7; j >= 0; j--) printf("%c", (a[i] & (1 << j)) ? '1' : '0');
58   }
59   printf("\n");
60
61   printf("b bits:");
62   for (i = 0; i < 3; i++) {
63     printf(" ");
64     for (j = 7; j >= 0; j--) printf("%c", (b[i] & (1 << j)) ? '1' : '0');
65   }
66   printf("\n");
67
68   printf("\n");
69   for (i = 0; i < 8; i++) {
70     printf("Word %2d: %d * 5 = %d\n", i,
71            gf.extract_word.w32(&gf, a, 3, i),
72            gf.extract_word.w32(&gf, b, 3, i));
73   }
74   return 0;
75 }