aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2021-10-05 14:01:17 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2021-10-05 14:01:52 +0200
commit92402d5e0a2b8e0692b2eebd15b893bdbe4c3a34 (patch)
treee0ca1ae3a5e6d53334b49f929b57e5e2c4d29cfa
parent137864f559e7eff1f929958d3999359c7070ed91 (diff)
downloadbusybox-w32-92402d5e0a2b8e0692b2eebd15b893bdbe4c3a34.tar.gz
busybox-w32-92402d5e0a2b8e0692b2eebd15b893bdbe4c3a34.tar.bz2
busybox-w32-92402d5e0a2b8e0692b2eebd15b893bdbe4c3a34.zip
tls: remove one overzealous debugging statement
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--networking/tls_sp_c32.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/networking/tls_sp_c32.c b/networking/tls_sp_c32.c
index 5b4c7e97c..7c6229ffd 100644
--- a/networking/tls_sp_c32.c
+++ b/networking/tls_sp_c32.c
@@ -395,12 +395,8 @@ static void sp_256_mont_reduce_10(sp_digit* a /*, const sp_digit* m, sp_digit mp
395 } 395 }
396 396
397 sp_256_mont_shift_10(a, a); 397 sp_256_mont_shift_10(a, a);
398//TODO: can below condition ever be true? Doesn't it require 512+th bit(s) in a to be set?
399 if ((a[9] >> 22) > 0) 398 if ((a[9] >> 22) > 0)
400{
401dbg("THIS HAPPENS\n");
402 sp_256_sub_10(a, a, m); 399 sp_256_sub_10(a, a, m);
403}
404 sp_256_norm_10(a); 400 sp_256_norm_10(a);
405} 401}
406 402