aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2021-11-27 15:50:40 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2021-11-27 15:50:40 +0100
commit8cbb70365f653397c8c2b9370214d5aed36ec9fa (patch)
treef7fe3cb62bb2a4e0e68de2606fb646a508b78b1c
parent4415f7bc06f1ee382bcbaabd86c3d7aca0b46d93 (diff)
downloadbusybox-w32-8cbb70365f653397c8c2b9370214d5aed36ec9fa.tar.gz
busybox-w32-8cbb70365f653397c8c2b9370214d5aed36ec9fa.tar.bz2
busybox-w32-8cbb70365f653397c8c2b9370214d5aed36ec9fa.zip
tls: P256: remove redundant zeroing in sp_256_map_8
Previous change made it obvious that we zero out already-zeroed high bits function old new delta sp_256_ecc_mulmod_8 534 494 -40 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--networking/tls_sp_c32.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/networking/tls_sp_c32.c b/networking/tls_sp_c32.c
index 74ded2cda..baed62f41 100644
--- a/networking/tls_sp_c32.c
+++ b/networking/tls_sp_c32.c
@@ -1062,7 +1062,6 @@ static void sp_256_map_8(sp_point* r, sp_point* p)
1062 1062
1063 /* x /= z^2 */ 1063 /* x /= z^2 */
1064 sp_256to512z_mont_mul_8(r->x, p->x, t2 /*, p256_mod, p256_mp_mod*/); 1064 sp_256to512z_mont_mul_8(r->x, p->x, t2 /*, p256_mod, p256_mp_mod*/);
1065 memset(r->x + 8, 0, sizeof(r->x) / 2);
1066 sp_512to256_mont_reduce_8(r->x /*, p256_mod, p256_mp_mod*/); 1065 sp_512to256_mont_reduce_8(r->x /*, p256_mod, p256_mp_mod*/);
1067 /* Reduce x to less than modulus */ 1066 /* Reduce x to less than modulus */
1068 if (sp_256_cmp_8(r->x, p256_mod) >= 0) 1067 if (sp_256_cmp_8(r->x, p256_mod) >= 0)
@@ -1071,7 +1070,6 @@ static void sp_256_map_8(sp_point* r, sp_point* p)
1071 1070
1072 /* y /= z^3 */ 1071 /* y /= z^3 */
1073 sp_256to512z_mont_mul_8(r->y, p->y, t1 /*, p256_mod, p256_mp_mod*/); 1072 sp_256to512z_mont_mul_8(r->y, p->y, t1 /*, p256_mod, p256_mp_mod*/);
1074 memset(r->y + 8, 0, sizeof(r->y) / 2);
1075 sp_512to256_mont_reduce_8(r->y /*, p256_mod, p256_mp_mod*/); 1073 sp_512to256_mont_reduce_8(r->y /*, p256_mod, p256_mp_mod*/);
1076 /* Reduce y to less than modulus */ 1074 /* Reduce y to less than modulus */
1077 if (sp_256_cmp_8(r->y, p256_mod) >= 0) 1075 if (sp_256_cmp_8(r->y, p256_mod) >= 0)