The unified diff between revisions [0dc5b2d6..] and [b14c94b9..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'bn_mp_toom_mul.c'

#
#
# patch "bn_mp_toom_mul.c"
#  from [ef10988525e274d5e954a11fc04edb96bc4590a3]
#    to [8a45c9922034269d563cbdbd1b55d772ccc06056]
#
============================================================
--- bn_mp_toom_mul.c	ef10988525e274d5e954a11fc04edb96bc4590a3
+++ bn_mp_toom_mul.c	8a45c9922034269d563cbdbd1b55d772ccc06056
@@ -17,9 +17,10 @@

 /* multiplication using the Toom-Cook 3-way algorithm
  *
- * Much more complicated than Karatsuba but has a lower asymptotic running time of
- * O(N**1.464).  This algorithm is only particularly useful on VERY large
- * inputs (we're talking 1000s of digits here...).
+ * Much more complicated than Karatsuba but has a lower
+ * asymptotic running time of O(N**1.464).  This algorithm is
+ * only particularly useful on VERY large inputs
+ * (we're talking 1000s of digits here...).
 */
 int mp_toom_mul(mp_int *a, mp_int *b, mp_int *c)
 {