aboutsummaryrefslogtreecommitdiffstats
path: root/src/math
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-09-26 22:57:39 +0000
committerlloyd <[email protected]>2010-09-26 22:57:39 +0000
commit126e424ecf9045dbb44763b287bf96f401260230 (patch)
tree27633721ae15de6daf373c82bcb32409bc44c1ef /src/math
parent7cda2c67b67ea1b5d5f0a40d45f298fe943a469a (diff)
Cleanup
Diffstat (limited to 'src/math')
-rw-r--r--src/math/mp/mulop_generic/mp_mulop.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/math/mp/mulop_generic/mp_mulop.cpp b/src/math/mp/mulop_generic/mp_mulop.cpp
index 33ee2af32..b6966ada7 100644
--- a/src/math/mp/mulop_generic/mp_mulop.cpp
+++ b/src/math/mp/mulop_generic/mp_mulop.cpp
@@ -5,9 +5,9 @@
* Distributed under the terms of the Botan license
*/
+#include <botan/internal/mp_core.h>
#include <botan/internal/mp_asm.h>
#include <botan/internal/mp_asmi.h>
-#include <botan/internal/mp_core.h>
#include <botan/mem_ops.h>
namespace Botan {
@@ -42,14 +42,14 @@ void bigint_simple_mul(word z[], const word x[], u32bit x_size,
/*
* Simple O(N^2) Squaring
-
-This is exactly the same algorithm as bigint_simple_mul,
-however because C/C++ compilers suck at alias analysis it
-is good to have the version where the compiler knows
-that x == y
-
-There is an O(n^1.5) squaring algorithm specified in Handbook of
-Applied Cryptography, chapter 14
+*
+* This is exactly the same algorithm as bigint_simple_mul, however
+* because C/C++ compilers suck at alias analysis it is good to have
+* the version where the compiler knows that x == y
+*
+* There is an O(n^1.5) squaring algorithm specified in Handbook of
+* Applied Cryptography, chapter 14
+*
*/
void bigint_simple_sqr(word z[], const word x[], u32bit x_size)
{