aboutsummaryrefslogtreecommitdiffstats
path: root/src/math/bigint
Commit message (Expand)AuthorAgeFilesLines
* propagate from branch 'net.randombit.botan' (head 303b2518a80553214b1e5ab4d9b...lloyd2010-11-042-1/+29
|\
| * propagate from branch 'net.randombit.botan' (head 2841fb518e20d2fe0a374e4f6b0...lloyd2010-10-282-4/+4
| |\
| * \ propagate from branch 'net.randombit.botan' (head 2898d79f992f27a328a3e41d34b...lloyd2010-10-132-1/+29
| |\ \
| | * \ propagate from branch 'net.randombit.botan' (head a29c41b4a949207b1544096c3af...lloyd2010-09-032-1/+29
| | |\ \
| | | * \ propagate from branch 'net.randombit.botan' (head 0a3348f52bf558bc2282e1066c2...lloyd2010-08-132-1/+29
| | | |\ \
| | | | * \ propagate from branch 'net.randombit.botan' (head 161b5c0300b72baa746f101fda1...lloyd2010-07-092-1/+29
| | | | |\ \
| | | | | * \ propagate from branch 'net.randombit.botan' (head 294e2082ce9231d6165276e2f2a...lloyd2010-06-177-75/+186
| | | | | |\ \
| | | | | * \ \ propagate from branch 'net.randombit.botan' (head 96d0a1885774b624812fd143d54...lloyd2010-03-212-4/+36
| | | | | |\ \ \
| | | | | | * \ \ propagate from branch 'net.randombit.botan' (head 5e9c6107cbb15744c2edf2eb0e2...lloyd2010-03-132-4/+36
| | | | | | |\ \ \
| | | | | | | * \ \ propagate from branch 'net.randombit.botan' (head 5bfc3e699003b86615c584f8ae4...lloyd2010-02-142-4/+36
| | | | | | | |\ \ \
| | | | | | | | * \ \ propagate from branch 'net.randombit.botan' (head 14c1d4dc8696d2705a70ec3d240...lloyd2009-12-212-4/+36
| | | | | | | | |\ \ \
| | | | | | | | | * \ \ propagate from branch 'net.randombit.botan' (head 744dccf92270cf16b80b50ee275...lloyd2009-12-1631-62/+68
| | | | | | | | | |\ \ \
| | | | | | | | | * | | | Define move assignment and constructors in terms of std::swap (whichlloyd2009-11-191-6/+2
| | | | | | | | | * | | | Add move assignment and constructor operators to BigInt. On macro benchmarkslloyd2009-11-192-4/+40
* | | | | | | | | | | | | Make MemoryRegion::set protected, change all callerslloyd2010-10-291-0/+9
| |_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | |
* | | | | | | | | | | | BigInt::get_substring really shouldn't return size_t. Revert tolloyd2010-10-182-3/+3
* | | | | | | | | | | | For const BigInt::operator[], return a const reference instead of alloyd2010-10-181-1/+1
|/ / / / / / / / / / /
* | | | | | | | | | | Use size_t in all of math, remove to_u32bitlloyd2010-10-128-136/+111
* | | | | | | | | | | At some point I 'simplified' the divide code to always run thelloyd2010-09-261-1/+5
* | | | | | | | | | | Move the core MPI functions to src/math/mp, leaving src/math/bigint justlloyd2010-09-2427-3742/+1
* | | | | | | | | | | Delete obsolete asm versionslloyd2010-09-247-781/+0
* | | | | | | | | | | Minor performance tweak, avoid zeroing things we'll immediately writelloyd2010-09-241-2/+1
* | | | | | | | | | | Modify bigint_monty_redc to take an additional workspace argument.lloyd2010-09-242-27/+30
* | | | | | | | | | | s/carry/borrow/ in subtraction routineslloyd2010-09-241-14/+18
* | | | | | | | | | | s/j/i for loop variableslloyd2010-09-241-36/+36
* | | | | | | | | | | Cleanuplloyd2010-09-232-16/+24
* | | | | | | | | | | Make these functions mostly constant-time, and in particular notlloyd2010-09-231-29/+9
* | | | | | | | | | | Update all uses of MemoryRegion::append to use either push_back or operator+=lloyd2010-09-151-4/+3
* | | | | | | | | | | More changes to avoid vector to pointer implicit conversionslloyd2010-09-142-6/+6
* | | | | | | | | | | More vector->pointer conversion removals.lloyd2010-09-131-2/+2
* | | | | | | | | | | Anywhere where we use MemoryRegion::begin to get access to the raw pointerlloyd2010-09-133-4/+4
* | | | | | | | | | | Big, invasive but mostly automated change, with a further attempt atlloyd2010-09-073-5/+5
* | | | | | | | | | | Realization while thinking about the recently added truncate: in a STLlloyd2010-09-072-5/+5
|/ / / / / / / / / /
* | | | | | | | | | Update some callers that were using Hex_Encoder or Hex_Decoder butlloyd2010-09-031-15/+17
* | | | | | | | | | Interesting factoid, turns out that overloading std::swap is notlloyd2010-09-021-1/+5
* | | | | | | | | | Rename mp_amd64_msvc to mp_msvc64 since it supports both AMD64 andlloyd2010-08-253-2/+2
|/ / / / / / / / /
* | | | | | | | | Also allow clang with 32-bit assembly code, everything seems to worklloyd2010-08-081-0/+1
* | | | | | | | | Clang understands at least some GCC inline asm syntax as well as whatlloyd2010-08-081-0/+1
|/ / / / / / / /
* | | | | | | / Make round_up and round_down templates instead of fixed to use u32bitslloyd2010-06-291-5/+5
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | Use mode(TI) operations to get access to MIPS 64-bit multiply.lloyd2010-06-171-1/+4
* | | | | | | Doxygen for divide.hlloyd2010-06-161-1/+11
* | | | | | | More Doxygen updates. Also, don't expose divide() in numthry.hlloyd2010-06-161-26/+27
* | | | | | | More BigInt Doxygen comment updateslloyd2010-06-161-19/+20
* | | | | | | Cleanup some BigInt doxygen commentslloyd2010-06-161-31/+44
* | | | | | | Replace "@return a blah" and "@return the blah" with just "@return blah"lloyd2010-06-161-2/+2
* | | | | | | Fix a few hundred Doxygen warningslloyd2010-06-151-4/+11
* | | | | | | Include generic mp_asmi.h for MSVClloyd2010-06-112-0/+2
* | | | | | | Have to add it as explicit dep in bigintlloyd2010-06-111-1/+1
* | | | | | | Add (untested) support for VC++'s _umul128 intrinsic, which apparentlylloyd2010-06-112-0/+76
* | | | | | | In BigInt::bits, cache sig_words() result instead of calling twicelloyd2010-06-071-2/+4
|/ / / / / /