]> pd.if.org Git - zpackage/blob - crypto/ref10/fe_copy.c
remove stray debug fprintf
[zpackage] / crypto / ref10 / fe_copy.c
1 #include <stdint.h>
2
3 /*
4 h = f
5 */
6
7 void fe_copy(int32_t h[10], int32_t f[10]) {
8         int32_t f0 = f[0];
9         int32_t f1 = f[1];
10         int32_t f2 = f[2];
11         int32_t f3 = f[3];
12         int32_t f4 = f[4];
13         int32_t f5 = f[5];
14         int32_t f6 = f[6];
15         int32_t f7 = f[7];
16         int32_t f8 = f[8];
17         int32_t f9 = f[9];
18         h[0] = f0;
19         h[1] = f1;
20         h[2] = f2;
21         h[3] = f3;
22         h[4] = f4;
23         h[5] = f5;
24         h[6] = f6;
25         h[7] = f7;
26         h[8] = f8;
27         h[9] = f9;
28 }