diff options
author | Jack Lloyd <[email protected]> | 2015-12-25 00:55:40 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2015-12-25 00:55:40 -0500 |
commit | f62bcf3fc89837aed451b4b07a7e795add205261 (patch) | |
tree | 9c11914bffa44236b60860d6fc78c1ba83f2516f /src/lib/math/mp/mp_comba.cpp | |
parent | 20e7a430425f20c939e872c932c29330f8db5422 (diff) |
Remove mp_mulop.cpp
It had two functions, both only called from one place (mp_karat.cpp).
Both multiple and square ops were O(n**2), so drop square and just
call mul in mp_karat.cpp for either case
Diffstat (limited to 'src/lib/math/mp/mp_comba.cpp')
-rw-r--r-- | src/lib/math/mp/mp_comba.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/math/mp/mp_comba.cpp b/src/lib/math/mp/mp_comba.cpp index 0170c9fcd..1ebd29817 100644 --- a/src/lib/math/mp/mp_comba.cpp +++ b/src/lib/math/mp/mp_comba.cpp @@ -1,6 +1,7 @@ /* * Comba Multiplication and Squaring -* (C) 1999-2007,2011,2014 Jack Lloyd +* +* This file was automatically generated by comba.py * * Botan is released under the Simplified BSD License (see license.txt) */ |