f5d92efc27f42b490b67efcd7f08a5f87a3ca694
[trex.git] /
1 #include "fe.h"
2 #include "crypto_int64.h"
3 #include "crypto_uint64.h"
4
5 #ifndef HAVE_TI_MODE
6
7 static crypto_uint64 load_3(const unsigned char *in)
8 {
9   crypto_uint64 result;
10   result = (crypto_uint64) in[0];
11   result |= ((crypto_uint64) in[1]) << 8;
12   result |= ((crypto_uint64) in[2]) << 16;
13   return result;
14 }
15
16 static crypto_uint64 load_4(const unsigned char *in)
17 {
18   crypto_uint64 result;
19   result = (crypto_uint64) in[0];
20   result |= ((crypto_uint64) in[1]) << 8;
21   result |= ((crypto_uint64) in[2]) << 16;
22   result |= ((crypto_uint64) in[3]) << 24;
23   return result;
24 }
25
26 void fe_frombytes(fe h,const unsigned char *s)
27 {
28   crypto_int64 h0 = load_4(s);
29   crypto_int64 h1 = load_3(s + 4) << 6;
30   crypto_int64 h2 = load_3(s + 7) << 5;
31   crypto_int64 h3 = load_3(s + 10) << 3;
32   crypto_int64 h4 = load_3(s + 13) << 2;
33   crypto_int64 h5 = load_4(s + 16);
34   crypto_int64 h6 = load_3(s + 20) << 7;
35   crypto_int64 h7 = load_3(s + 23) << 5;
36   crypto_int64 h8 = load_3(s + 26) << 4;
37   crypto_int64 h9 = (load_3(s + 29) & 8388607) << 2;
38   crypto_int64 carry0;
39   crypto_int64 carry1;
40   crypto_int64 carry2;
41   crypto_int64 carry3;
42   crypto_int64 carry4;
43   crypto_int64 carry5;
44   crypto_int64 carry6;
45   crypto_int64 carry7;
46   crypto_int64 carry8;
47   crypto_int64 carry9;
48
49   carry9 = (h9 + (crypto_int64) (1<<24)) >> 25; h0 += carry9 * 19; h9 -= carry9 << 25;
50   carry1 = (h1 + (crypto_int64) (1<<24)) >> 25; h2 += carry1; h1 -= carry1 << 25;
51   carry3 = (h3 + (crypto_int64) (1<<24)) >> 25; h4 += carry3; h3 -= carry3 << 25;
52   carry5 = (h5 + (crypto_int64) (1<<24)) >> 25; h6 += carry5; h5 -= carry5 << 25;
53   carry7 = (h7 + (crypto_int64) (1<<24)) >> 25; h8 += carry7; h7 -= carry7 << 25;
54
55   carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= carry0 << 26;
56   carry2 = (h2 + (crypto_int64) (1<<25)) >> 26; h3 += carry2; h2 -= carry2 << 26;
57   carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= carry4 << 26;
58   carry6 = (h6 + (crypto_int64) (1<<25)) >> 26; h7 += carry6; h6 -= carry6 << 26;
59   carry8 = (h8 + (crypto_int64) (1<<25)) >> 26; h9 += carry8; h8 -= carry8 << 26;
60
61   h[0] = h0;
62   h[1] = h1;
63   h[2] = h2;
64   h[3] = h3;
65   h[4] = h4;
66   h[5] = h5;
67   h[6] = h6;
68   h[7] = h7;
69   h[8] = h8;
70   h[9] = h9;
71 }
72
73 #endif