MPHELL  4.0.0
mphell_tuto_fp3.c
Go to the documentation of this file.
1 /*
2  MPHELL-4.0
3  Author(s): The MPHELL team
4 
5  (C) Copyright 2015-2018 - Institut Fourier / Univ. Grenoble Alpes (France)
6 
7  This file is part of the MPHELL Library.
8  MPHELL is free software: you can redistribute it and/or modify
9  it under the terms of the GNU Lesser General Public License as published by
10  the Free Software Foundation, version 3 of the License.
11 
12  MPHELL is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  GNU Lesser General Public License for more details.
16 
17  You should have received a copy of the GNU Lesser General Public License
18  along with MPHELL. If not, see <http://www.gnu.org/licenses/>.
19 */
20 
26 #include <stdio.h>
27 #include "mphell/mphell.h"
28 
29 int main()
30 {
31  /* Initialise MPHELL with 128 bits of security strength for the entropy, RANDOM_AES128 as DRBG and DEVURANDOM as entropy source */
32 
34 
35  /* Create base prime field of characteristic p */
36 
37  field k;
38  field_alloc(k, FP, bits_to_nblock(384), NULL);
39  number p;
40  number_init(&p, bits_to_nblock(384));
41  number_set_str(p, "8CB91E82A3386D280F5D6F7E50E641DF152F7109ED5456B412B1DA197FB71123ACD3A729901D1A71874700133107EC53", 16);
42  field_create(k, "", STACK_1, 1, p);
43 
44  /* Create finite field GF(p^3) of characteristic p and order p^3 */
45 
46  field_elt non_residue;
47  field_elt_alloc(&non_residue, k);
48  field_elt_init(non_residue, k);
49  /* Find an irreducible polynomial P for the test: P = X^3 - non_residue */
50  printf("Find a non cube element in k : %d\n", field_find_nonpower_ui(non_residue, 3, k, STACK_1));
51  field k3;
52  field_alloc(k3, FP3, bits_to_nblock(384), k);
53  field_create(k3, "", STACK_1, 2, k, non_residue);
54 
55  /* Allocate element of the field k2 */
56 
57  field_elt x;
58  field_elt y;
59  field_elt res;
60  field_elt_alloc(&x, k3);
61  field_elt_init(x, k3);
62  field_elt_alloc(&y, k3);
63  field_elt_init(y, k3);
64  field_elt_alloc(&res, k3);
65  field_elt_init(res, k3);
66 
67  /* Set field element from string in base 10, which are not under Montgomery form */
68 
69  field_elt_set_str(x, "17533160620960747720658538821194093754122675622398475560762133052267072585559185687559064016240090086860997857609409,6500634679458907167017356094867727707826954836406037804481994709882642877127237360869164454175728327118666667333650,11742847707788052444522195706157812780258053127409735266675287415078850342578399252850159043780127493098080513256739", 10, false, k3, STACK_1);
70  field_elt_set_str(y, "4126110149158568452410698021138511225673440764619173039319485451554017348466776134677497966604444001579710560363922,15158636090660409006051880747464877271969161550611610795599623793938447056898724461367397528668805761322041750639681,9916423062331263728547041136174792199538063259607913333406331088742239591447562569386402939064406595342627904716592", 10, false, k3, STACK_1);
71 
72  /* Addition */
73 
74  field_elt_inc(res, x, k);
75  printf("x+1 = "); field_elt_print(res, 16, true, k, STACK_1); printf("\n");
76 
77  field_elt_add(res, x, y, k);
78  printf("x+y = "); field_elt_print(res, 16, true, k, STACK_1); printf("\n");
79 
80  /* Substraction */
81 
82  field_elt_dec(res, x, k);
83  printf("x-1 = "); field_elt_print(res, 16, true, k, STACK_1); printf("\n");
84 
85  field_elt_sub(res, x, y, k);
86  printf("x-y = "); field_elt_print(res, 16, true, k, STACK_1); printf("\n");
87 
88  /* Multiplication */
89 
90  field_elt_mul(res, x, y, k, STACK_1);
91  printf("x*y = "); field_elt_print(res, 16, true, k, STACK_1); printf("\n");
92 
93  field_elt_sqr(res, x, k, STACK_1);
94  printf("x^2 = "); field_elt_print(res, 16, true, k, STACK_1); printf("\n");
95  printf("res is square : %d\n", field_elt_issquare(res, k, STACK_1)>0);
96 
97  /* Division */
98 
99  field_elt_div(res, x, y, k, STACK_1);
100  printf("x/y = "); field_elt_print(res, 16, true, k, STACK_1); printf("\n");
101 
102  /* Power */
103 
104  field_elt_pow_ui(res, x, 3, k, STACK_1);
105  printf("x^3 = "); field_elt_print(res, 16, true, k, STACK_1); printf("\n");
106  printf("Res is a power of 3 : %d\n", field_elt_ispower_ui(res, 3, k, STACK_1)>0);
107 
108  number n; number_init(&n, bits_to_nblock(192)); number_set_str(n, "f14b8dbafa22b6ba35626d40d2d00001381bef07d2c3015", 16);
109  field_elt_pow_number(res, x, n, k, STACK_1);
110  printf("x^n = "); field_elt_print(res, 16, true, k, STACK_1); printf("\n");
111  printf("Res is a power of n : %d\n", field_elt_ispower_number(res, n, k, STACK_1)>0);
112  number_free(&n);
113 
114  /* Inverse */
115 
116  field_elt_inv(res, x, k, STACK_1);
117  printf("x^(-1) = "); field_elt_print(res, 16, true, k, STACK_1); printf("\n");
118 
119  /* Roots */
120 
121  field_elt_sqr(x, x, k, STACK_1);
122  printf("x = "); field_elt_print(x, 16, true, k, STACK_1); printf("\n");
123  printf("x is square : %d\n", field_elt_issquare(x, k, STACK_1)>0);
124  field_elt_sqrt(res, x, k, STACK_1);
125  printf("x^(1/2) = "); field_elt_print(res, 16, true, k, STACK_1); printf("\n");
126 
127  field_elt_pow_ui(x, x, 3, k, STACK_1);
128  printf("x = "); field_elt_print(x, 16, true, k, STACK_1); printf("\n");
129  printf("x is a power of 3 : %d\n", field_elt_ispower_ui(x, 3, k, STACK_1)>0);
130  field_elt_cube_root(res, x, k, STACK_1);
131  printf("x^(1/3) = "); field_elt_print(res, 16, true, k, STACK_1); printf("\n");
132 
133  /* Free allocated memory */
134 
135  field_elt_free(&x, k3);
136  field_elt_free(&y, k3);
137  field_elt_free(&res, k3);
138  number_free(&p);
139  field_elt_free(&non_residue, k);
140  field_free(k);
141  field_free(k3);
142 
143  free_mphell();
144 
145  return 0;
146 }
fp_elt * field_elt
Generic field element.
Definition: mphell-field.h:39
void free_mphell()
Free MPHELL memory, especially the big amount of temporary memory.
Definition: mphell-init.c:97
void field_elt_free(fe_ptr *src, field_srcptr k)
Free space used by src.
Definition: mphell-field.c:356
static void field_elt_mul(fe_ptr dst, fe_srcptr src1, fe_srcptr src2, field_srcptr k, uint8_t stack)
Set dst <- src1 * src2, if Montgomery arithmetic is used, the Montgomery multiplication will be used ...
Definition: mphell-field.h:753
void init_mphell(const uint16_t security_strength, const random_type type, const entropy_type entropy)
Initialise MPHELL with security_strength bits of security (for random number only).
Definition: mphell-init.c:35
static void field_elt_inc(fe_ptr dst, fe_srcptr src, field_srcptr k)
Set dst <- src + 1.
Definition: mphell-field.h:535
uint8_t bits_to_nblock(const uint16_t nbits)
Return the number of blocks required to store a nbits number.
Definition: mphell-util.c:29
void field_elt_sqrt(fe_ptr dst, fe_srcptr src, field_srcptr k, uint8_t stack)
Set dst <- src^(1/2)
void field_elt_alloc(fe_ptr *dst, field_srcptr k)
Allocate space for a field element.
Definition: mphell-field.c:277
field_t field[1]
Address of a field structure.
Definition: mphell-field.h:110
void field_elt_div(fe_ptr dst, fe_srcptr src1, fe_srcptr src2, field_srcptr k, uint8_t stack)
Set dst <- src1 / src2.
void field_elt_cube_root(fe_ptr dst, fe_srcptr src, field_srcptr k, uint8_t stack)
Set dst <- src^(1/3)
void number_free(number *dst)
Free a number_ptr allocated on the RAM memory (malloc)
Definition: mphell-number.c:75
void field_create(field_ptr k, const char *id, uint8_t stack, const uint32_t n,...)
Initialize the different fields of the structure pointed by k.
Definition: mphell-field.c:76
bool field_elt_issquare(fe_srcptr src, field_srcptr k, uint8_t stack)
Test if src is a square using the Lengendre symbol.
Definition: mphell-field.c:921
int8_t field_elt_ispower_ui(fe_srcptr src, const block n, field_srcptr k, uint8_t stack)
Test if src is a n-power in src->k.
Definition: mphell-field.c:940
void field_alloc(field_ptr k, const field_type type, const uint8_t size, field_ptr base)
Allocates space for the different fields of the structure pointed by k.
Definition: mphell-field.c:37
bool field_find_nonpower_ui(fe_ptr dst, const block n, field_ptr k, uint8_t stack)
Look for a random non n-power element in k.
Definition: mphell-field.c:991
void field_elt_inv(fe_ptr dst, fe_srcptr src, field_srcptr k, uint8_t stack)
Set dst <- src^(-1)
void field_elt_init(fe_ptr dst, field_srcptr k)
Initialise the field element.
Definition: mphell-field.c:299
void field_elt_pow_number(fe_ptr dst, fe_srcptr src, number_srcptr n, field_srcptr k, uint8_t stack)
Set dst <- src^n.
Definition: mphell-field.c:902
void number_set_str(number_ptr dst, const char *str, const uint8_t base)
Set dst to str.
void number_init(number *dst, const uint8_t n)
Allocate a number_ptr on the RAM memory (malloc)
Definition: mphell-number.c:59
void field_elt_print(fe_srcptr src, const uint8_t base, const bool lift, field_srcptr k, uint8_t stack)
Print src in base specified by base.
Definition: mphell-field.c:721
void field_elt_pow_ui(fe_ptr dst, fe_srcptr src, const block n, field_srcptr k, uint8_t stack)
Set dst <- src^n.
Definition: mphell-field.c:883
void field_free(field_ptr k)
Free the space of the field informations structure.
Definition: mphell-field.c:183
void field_elt_set_str(fe_ptr dst, const char *str, const uint8_t base, const bool isreduced, field_srcptr k, uint8_t stack)
Set dst to str, if Montgomery arithmetic is used, is_reduced == false -> transform dst into its Montg...
Definition: mphell-field.c:505
static void field_elt_sqr(fe_ptr dst, fe_srcptr src, field_srcptr k, uint8_t stack)
Set dst <- src^2.
Definition: mphell-field.h:913
static void field_elt_sub(fe_ptr dst, fe_srcptr src1, fe_srcptr src2, field_srcptr k)
Set dst <- src1 - src2.
Definition: mphell-field.h:642
static void field_elt_dec(fe_ptr dst, fe_srcptr src, field_srcptr k)
Set dst <- src - 1.
Definition: mphell-field.h:615
static void field_elt_add(fe_ptr dst, fe_srcptr src1, fe_srcptr src2, field_srcptr k)
Set dst <- src1 + src2.
Definition: mphell-field.h:562
int8_t field_elt_ispower_number(fe_srcptr src, number_srcptr n, field_srcptr k, uint8_t stack)
Test if src is a n-power in src->k.
Definition: mphell-field.c:961