aboutsummaryrefslogtreecommitdiffstats
path: root/src/math/numbertheory/point_gfp.cpp
Commit message (Expand)AuthorAgeFilesLines
* Move the curve over GF(p) code back into its own subdirlloyd2011-05-191-585/+0
* Modify ECC points to do all math in Montgomery form, rather thanlloyd2011-05-171-98/+98
* Avoid more VC warningslloyd2010-12-131-2/+2
* Avoid a conditional in point multiplicationlloyd2010-12-071-11/+7
* Use append operator instead of copylloyd2010-12-071-21/+16
* BigInt::get_substring really shouldn't return size_t. Revert tolloyd2010-10-181-3/+3
* Use size_t in all of math, remove to_u32bitlloyd2010-10-121-13/+13
* Tidylloyd2010-09-301-1/+2
* Modify bigint_monty_redc to take an additional workspace argument.lloyd2010-09-241-13/+19
* Anywhere where we use MemoryRegion::begin to get access to the raw pointerlloyd2010-09-131-7/+7
* Big, invasive but mostly automated change, with a further attempt atlloyd2010-09-071-2/+2
* Replace PointGFp::check_invaraints, which would either return silentlylloyd2010-03-191-8/+13
* The logic PointGFp::operator*= was basically doinglloyd2010-03-161-21/+23
* Shuffle functions for easier readinglloyd2010-03-161-72/+74
* Fix include. <botan/mp_core.h> was picking up the system installed version,lloyd2010-03-161-1/+1
* Various microoptimizations, 5-12% improvementlloyd2010-03-151-8/+15
* Use a 4-bit wide window for point multiplicationlloyd2010-03-151-14/+21
* Rewrite point mult to make larger windows easierlloyd2010-03-151-7/+14
* Strength reduce on multiplies in PointGFplloyd2010-03-151-4/+5
* Cache memory used for operations in pointlloyd2010-03-151-16/+18
* Modify to allow better memory cachinglloyd2010-03-151-19/+20
* Cache p.sig_words() in curve objectlloyd2010-03-151-25/+57
* Use bigint_{mul,sqr} in PointGFp monty opslloyd2010-03-151-8/+7
* Add PointGFp::monty_sqrlloyd2010-03-151-10/+36
* Cache BigInts as well. Kind of like the old scheme, but created insidelloyd2010-03-131-25/+57
* Always keep coord_{x,y,z} < p, so don't ever have to copy or use reducerlloyd2010-03-131-22/+10
* Save workspace for addition calls inside operator*=lloyd2010-03-131-20/+23
* Share workspace among calls to mult2lloyd2010-03-131-9/+8
* Cache a workspace; much fasterlloyd2010-03-131-30/+41
* Small optimizationslloyd2010-03-131-6/+13
* Kill stdio includelloyd2010-03-131-2/+0
* Unroll point multiply to look at two bits of scalar each iteration.lloyd2010-03-131-2/+24
* Precompute a*rlloyd2010-03-131-1/+1
* More monty_mult cleanupslloyd2010-03-131-6/+4
* Small monty_mult cleanuplloyd2010-03-131-10/+8
* Inline/simplifiy monty multlloyd2010-03-131-31/+15
* Only need a single word from p_dash, so only save that single word.lloyd2010-03-131-94/+9
* Use Montgomery reduction for the important parts of PointGFp, usinglloyd2010-03-131-71/+78
* Add back code for montgomery PointGFp mult (not used atm)lloyd2010-03-131-14/+157
* Hide PointGFp constructorslloyd2010-03-131-0/+10
* Remove access to the Jacobian coordinate getters get_{x,y,z}, as welllloyd2010-03-131-4/+9
* Clarify exception text on get_affine when point is zerolloyd2010-03-051-2/+2
* Make two variants of OS2ECP, one taking pointer + length, and otherlloyd2010-03-021-12/+13
* Inline some simple PointGFp functionslloyd2010-03-021-44/+0
* Rename mult2_in_place just mult2 (double would be better but is a keyword...)lloyd2010-03-011-4/+4
* Simplify mult2_in_place slightlylloyd2010-02-251-7/+3
* Move contents of gfpmath to numbertheory. Adjust dependencies.lloyd2010-02-251-0/+423