| Commit message (Expand) | Author | Age | Files | Lines |
* | Invert the meaning of the Miller-Rabin test; passes_test meant 'is not | lloyd | 2011-06-16 | 1 | -9/+17 |
* | Simplify Montgomery setup here a bit | lloyd | 2011-06-07 | 1 | -6/+4 |
* | Change order of arguments to bigint_monty_redc (internal interface, | lloyd | 2011-06-02 | 3 | -46/+43 |
* | Add monty sqr and multiply routines (they just call karatsuba and then | lloyd | 2011-06-02 | 4 | -43/+77 |
* | Reduce number of temporaries needed in point addition | lloyd | 2011-06-01 | 1 | -22/+14 |
* | Multi-expoentiation, using the single bit variation. Using a 2 or 3 | lloyd | 2011-06-01 | 2 | -0/+45 |
* | Only call p.sig_words once in CurveGFp constructor. | lloyd | 2011-05-19 | 1 | -4/+2 |
* | Move the curve over GF(p) code back into its own subdir | lloyd | 2011-05-19 | 5 | -5/+18 |
* | Small cleanup in the Barrett reducer, now doesn't create a temp if | lloyd | 2011-05-18 | 2 | -33/+35 |
* | Modify ECC points to do all math in Montgomery form, rather than | lloyd | 2011-05-17 | 4 | -156/+144 |
* | Always writing to/reading from the carry word makes valgrind unhappy. | lloyd | 2011-05-16 | 1 | -1/+2 |
* | Add base64_decode. Seems to work OK, though incremental decoding is | lloyd | 2011-05-12 | 1 | -1/+0 |
* | Add back BigInt::to_u32bit | lloyd | 2011-05-10 | 2 | -17/+45 |
* | dword was set to a size_t if we were using a 16 bit limb. Caused by an | lloyd | 2011-05-09 | 1 | -1/+1 |
* | Flatten out the mp directory since no alternative asm implemenations | lloyd | 2011-04-25 | 6 | -13/+3 |
* | Rename all references of ia32 to x86-32 and amd64 to x86-64. | lloyd | 2011-04-22 | 11 | -10/+9 |
* | More VC warning fixes | lloyd | 2011-02-09 | 1 | -2/+4 |
* | Oops - should not have used size_t here! | lloyd | 2010-12-22 | 1 | -1/+1 |
* | Avoid more VC warnings | lloyd | 2010-12-13 | 1 | -2/+2 |
* | Avoid a conditional in point multiplication | lloyd | 2010-12-07 | 1 | -11/+7 |
* | Use append operator instead of copy | lloyd | 2010-12-07 | 1 | -21/+16 |
* | Compile fix | lloyd | 2010-11-02 | 1 | -1/+1 |
* | Doxygen | lloyd | 2010-11-02 | 1 | -2/+1 |
* | Make MemoryRegion::set protected, change all callers | lloyd | 2010-10-29 | 2 | -4/+13 |
* | BigInt::get_substring really shouldn't return size_t. Revert to | lloyd | 2010-10-18 | 5 | -10/+8 |
* | For const BigInt::operator[], return a const reference instead of a | lloyd | 2010-10-18 | 1 | -1/+1 |
* | Use output_length() instead of OUTPUT_LENGTH pseudo-property | lloyd | 2010-10-13 | 1 | -1/+1 |
* | Use size_t in all of math, remove to_u32bit | lloyd | 2010-10-12 | 34 | -373/+348 |
* | Change ifs to compares to make it easier for a compiler to figure out | lloyd | 2010-10-12 | 1 | -11/+9 |
* | Tidy | lloyd | 2010-09-30 | 1 | -1/+2 |
* | Cleanup Karatsuba a bit | lloyd | 2010-09-28 | 1 | -103/+107 |
* | Cleanup | lloyd | 2010-09-26 | 1 | -9/+9 |
* | At some point I 'simplified' the divide code to always run the | lloyd | 2010-09-26 | 1 | -1/+5 |
* | Move the core MPI functions to src/math/mp, leaving src/math/bigint just | lloyd | 2010-09-24 | 28 | -13/+24 |
* | Delete obsolete asm versions | lloyd | 2010-09-24 | 7 | -781/+0 |
* | Minor performance tweak, avoid zeroing things we'll immediately write | lloyd | 2010-09-24 | 1 | -2/+1 |
* | Modify bigint_monty_redc to take an additional workspace argument. | lloyd | 2010-09-24 | 5 | -71/+83 |
* | s/carry/borrow/ in subtraction routines | lloyd | 2010-09-24 | 1 | -14/+18 |
* | s/j/i for loop variables | lloyd | 2010-09-24 | 1 | -36/+36 |
* | Cleanup | lloyd | 2010-09-23 | 2 | -16/+24 |
* | Make these functions mostly constant-time, and in particular not | lloyd | 2010-09-23 | 1 | -29/+9 |
* | Update all uses of MemoryRegion::append to use either push_back or operator+= | lloyd | 2010-09-15 | 1 | -4/+3 |
* | More changes to avoid vector to pointer implicit conversions | lloyd | 2010-09-14 | 2 | -6/+6 |
* | More vector->pointer conversion removals. | lloyd | 2010-09-13 | 2 | -5/+3 |
* | First set of changes for avoiding use implicit vector->pointer conversions | lloyd | 2010-09-13 | 2 | -7/+7 |
* | Anywhere where we use MemoryRegion::begin to get access to the raw pointer | lloyd | 2010-09-13 | 5 | -16/+16 |
* | Big, invasive but mostly automated change, with a further attempt at | lloyd | 2010-09-07 | 5 | -11/+11 |
* | Realization while thinking about the recently added truncate: in a STL | lloyd | 2010-09-07 | 2 | -5/+5 |
* | Avoid name clashing, Sun Studio doesn't like this | lloyd | 2010-09-07 | 1 | -2/+3 |
* | Update some callers that were using Hex_Encoder or Hex_Decoder but | lloyd | 2010-09-03 | 1 | -15/+17 |