aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networking/tls_fe.c24
-rw-r--r--networking/tls_pstm.c8
-rw-r--r--networking/tls_rsa.c4
-rw-r--r--networking/tls_sp_c32.c4
4 files changed, 19 insertions, 21 deletions
diff --git a/networking/tls_fe.c b/networking/tls_fe.c
index 3b3578c0d..e96b33225 100644
--- a/networking/tls_fe.c
+++ b/networking/tls_fe.c
@@ -64,8 +64,8 @@ static void fprime_select(byte *dst, const byte *zero, const byte *one, byte con
64#endif 64#endif
65 65
66static void fe_select(byte *dst, 66static void fe_select(byte *dst,
67 const byte *zero, const byte *one, 67 const byte *zero, const byte *one,
68 byte condition) 68 byte condition)
69{ 69{
70 const byte mask = -condition; 70 const byte mask = -condition;
71 int i; 71 int i;
@@ -163,11 +163,11 @@ static void fprime_mul(byte *r, const byte *a, const byte *b,
163 const byte bit = (b[i >> 3] >> (i & 7)) & 1; 163 const byte bit = (b[i >> 3] >> (i & 7)) & 1;
164 byte plusa[F25519_SIZE]; 164 byte plusa[F25519_SIZE];
165 165
166 for (j = 0; j < F25519_SIZE; j++) { 166 for (j = 0; j < F25519_SIZE; j++) {
167 c |= ((word16)r[j]) << 1; 167 c |= ((word16)r[j]) << 1;
168 r[j] = (byte)c; 168 r[j] = (byte)c;
169 c >>= 8; 169 c >>= 8;
170 } 170 }
171 raw_try_sub(r, modulus); 171 raw_try_sub(r, modulus);
172 172
173 fprime_copy(plusa, r); 173 fprime_copy(plusa, r);
@@ -315,7 +315,7 @@ static void fe_mul__distinct(byte *r, const byte *a, const byte *b)
315 315
316 for (; j < F25519_SIZE; j++) 316 for (; j < F25519_SIZE; j++)
317 c += ((word32)a[j]) * 317 c += ((word32)a[j]) *
318 ((word32)b[i + F25519_SIZE - j]) * 38; 318 ((word32)b[i + F25519_SIZE - j]) * 38;
319 319
320 r[i] = c; 320 r[i] = c;
321 } 321 }
@@ -474,9 +474,9 @@ static void fe_sqrt(byte *r, const byte *a)
474 474
475/* Differential addition */ 475/* Differential addition */
476static void xc_diffadd(byte *x5, byte *z5, 476static void xc_diffadd(byte *x5, byte *z5,
477 const byte *x1, const byte *z1, 477 const byte *x1, const byte *z1,
478 const byte *x2, const byte *z2, 478 const byte *x2, const byte *z2,
479 const byte *x3, const byte *z3) 479 const byte *x3, const byte *z3)
480{ 480{
481 /* Explicit formulas database: dbl-1987-m3 481 /* Explicit formulas database: dbl-1987-m3
482 * 482 *
@@ -516,7 +516,7 @@ static void xc_diffadd(byte *x5, byte *z5,
516 516
517/* Double an X-coordinate */ 517/* Double an X-coordinate */
518static void xc_double(byte *x3, byte *z3, 518static void xc_double(byte *x3, byte *z3,
519 const byte *x1, const byte *z1) 519 const byte *x1, const byte *z1)
520{ 520{
521 /* Explicit formulas database: dbl-1987-m 521 /* Explicit formulas database: dbl-1987-m
522 * 522 *
diff --git a/networking/tls_pstm.c b/networking/tls_pstm.c
index e5544ab11..99929031d 100644
--- a/networking/tls_pstm.c
+++ b/networking/tls_pstm.c
@@ -438,9 +438,9 @@ int32 FAST_FUNC pstm_read_unsigned_bin(pstm_int *a, unsigned char *b, int32 c)
438 int32 idx = (c - 1) & ~3; 438 int32 idx = (c - 1) & ~3;
439 switch (c % 4) { 439 switch (c % 4) {
440 case 0: do { pd[idx+0] = *b++; 440 case 0: do { pd[idx+0] = *b++;
441 case 3: pd[idx+1] = *b++; 441 case 3: pd[idx+1] = *b++;
442 case 2: pd[idx+2] = *b++; 442 case 2: pd[idx+2] = *b++;
443 case 1: pd[idx+3] = *b++; 443 case 1: pd[idx+3] = *b++;
444 idx -= 4; 444 idx -= 4;
445 } while ((c -= 4) > 0); 445 } while ((c -= 4) > 0);
446 } 446 }
@@ -1427,7 +1427,7 @@ static int32 pstm_div(psPool_t *pool, pstm_int *a, pstm_int *b, pstm_int *c,
1427 } 1427 }
1428 1428
1429 /* while (q{i-t-1} * (yt * b + y{t-1})) > 1429 /* while (q{i-t-1} * (yt * b + y{t-1})) >
1430 xi * b**2 + xi-1 * b + xi-2 1430 xi * b**2 + xi-1 * b + xi-2
1431 1431
1432 do q{i-t-1} -= 1; 1432 do q{i-t-1} -= 1;
1433 */ 1433 */
diff --git a/networking/tls_rsa.c b/networking/tls_rsa.c
index 5fda1cb49..2dd5a02f4 100644
--- a/networking/tls_rsa.c
+++ b/networking/tls_rsa.c
@@ -15,7 +15,7 @@
15 pkcs1Pad(in, inlen, out, outlen, cryptType) 15 pkcs1Pad(in, inlen, out, outlen, cryptType)
16static //bbox 16static //bbox
17int32 pkcs1Pad(unsigned char *in, uint32 inlen, unsigned char *out, 17int32 pkcs1Pad(unsigned char *in, uint32 inlen, unsigned char *out,
18 uint32 outlen, int32 cryptType, void *userPtr) 18 uint32 outlen, int32 cryptType, void *userPtr)
19{ 19{
20 unsigned char *c; 20 unsigned char *c;
21 int32 randomLen; 21 int32 randomLen;
@@ -60,7 +60,7 @@ int32 pkcs1Pad(unsigned char *in, uint32 inlen, unsigned char *out,
60 psRsaCrypt( in, inlen, out, outlen, key, type) 60 psRsaCrypt( in, inlen, out, outlen, key, type)
61static //bbox 61static //bbox
62int32 psRsaCrypt(psPool_t *pool, const unsigned char *in, uint32 inlen, 62int32 psRsaCrypt(psPool_t *pool, const unsigned char *in, uint32 inlen,
63 unsigned char *out, uint32 *outlen, psRsaKey_t *key, int32 type, 63 unsigned char *out, uint32 *outlen, psRsaKey_t *key, int32 type,
64 void *data) 64 void *data)
65{ 65{
66 pstm_int tmp, tmpa, tmpb; 66 pstm_int tmp, tmpa, tmpb;
diff --git a/networking/tls_sp_c32.c b/networking/tls_sp_c32.c
index 72a3be537..1f140315e 100644
--- a/networking/tls_sp_c32.c
+++ b/networking/tls_sp_c32.c
@@ -506,12 +506,10 @@ static void sp_256_sqr_10(sp_digit* r, const sp_digit* a)
506 break; 506 break;
507 if (j < 0) 507 if (j < 0)
508 continue; 508 continue;
509
510 c += ((int64_t)a[i]) * a[j] * 2; 509 c += ((int64_t)a[i]) * a[j] * 2;
511 } 510 }
512 if (i == j) 511 if (i == j)
513 c += ((int64_t)a[i]) * a[i]; 512 c += ((int64_t)a[i]) * a[i];
514
515 r[k + 2] += c >> 52; 513 r[k + 2] += c >> 52;
516 r[k + 1] = (c >> 26) & 0x3ffffff; 514 r[k + 1] = (c >> 26) & 0x3ffffff;
517 c = (c & 0x3ffffff) << 26; 515 c = (c & 0x3ffffff) << 26;