aboutsummaryrefslogtreecommitdiffstats
path: root/src/math
Commit message (Expand)AuthorAgeFilesLines
* 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-132-20/+28
* Share workspace among calls to mult2lloyd2010-03-132-10/+9
* Cache a workspace; much fasterlloyd2010-03-132-31/+43
* Correct Doxygen commentlloyd2010-03-131-3/+3
* 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-132-2/+9
* More monty_mult cleanupslloyd2010-03-131-6/+4
* Small monty_mult cleanuplloyd2010-03-131-10/+8
* Inline/simplifiy monty multlloyd2010-03-131-31/+15
* Single word p-dashlloyd2010-03-131-3/+4
* 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-132-74/+78
* Name args to bigint_{mul,sqr} in headerlloyd2010-03-131-5/+5
* Move monty params to curve, since only depend on the primelloyd2010-03-131-4/+37
* Add back code for montgomery PointGFp mult (not used atm)lloyd2010-03-132-14/+165
* Hide PointGFp constructorslloyd2010-03-132-7/+14
* Remove access to the Jacobian coordinate getters get_{x,y,z}, as welllloyd2010-03-132-33/+9
* Deconstify PK_Ops. It's quite reasonable that some op will want tolloyd2010-03-091-1/+1
* Consolidate code for choosing a window size for fixed width windowlloyd2010-03-094-72/+41
* Add back in blinding to RSA, RW, ElGamal, and DH.lloyd2010-03-083-85/+0
* Inline Engine_Core::mod_exp into singler caller, and deletelloyd2010-03-051-2/+19
* Make the modulus visible in Modular_Reducerlloyd2010-03-051-0/+2
* Force high bit in random_prime as well (done by randomize currently, but migh...lloyd2010-03-051-0/+3
* 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-022-13/+19
* Inline some simple PointGFp functionslloyd2010-03-022-51/+35
* Rename PointGFp::get_jac_proj_{x,y,z} simply get_{x,y,z}lloyd2010-03-021-3/+3
* Allow creating uninitialized PointGFp and CurveGFpslloyd2010-03-012-0/+10
* Rename mult2_in_place just mult2 (double would be better but is a keyword...)lloyd2010-03-012-6/+6
* Simplify mult2_in_place slightlylloyd2010-02-251-7/+3
* Move contents of gfpmath to numbertheory. Adjust dependencies.lloyd2010-02-255-15/+3
* Delete gfp_element.h and remove the gfpmath testslloyd2010-02-252-250/+0
* Hide MillerRabin_Test class (only used in numthry.cpp)lloyd2010-02-256-84/+84
* Cache the Modular_Reducer of p in CurveGFp; speedup of 3-4xlloyd2010-02-252-8/+11
* Remove GFpElement from check_invariants, remove includelloyd2010-02-251-20/+15
* create_random_point was not used anywhere, so remove itlloyd2010-02-252-28/+0
* s/GFpElement/Modular_Reducer/ in get_affine_{x,y}lloyd2010-02-251-14/+6
* Convert PointGFp::operator+= to using BigInt + Modular_Reducer instead oflloyd2010-02-251-34/+18
* Make PointGFp::mult2_in_place privatelloyd2010-02-252-20/+25
* Use Modular_Reducer instead of GFpElement in operator*=lloyd2010-02-251-13/+8
* Inline PointGFp constructorslloyd2010-02-252-51/+13
* In PointGFp::operator==, compare coordinates first, then the curvelloyd2010-02-251-4/+2
* There was only one caller of set_z_to_one (which was get_z_to_one) andlloyd2010-02-252-60/+24
* Rewrite PointGFp::mult2_in_place to use plain BigInt plus a Modular_Reducerlloyd2010-02-251-47/+29
* Hide PointGFp funcs set_z_to_one and get_z_to_onelloyd2010-02-251-15/+15
* Name vars in Modular_Reducer decllloyd2010-02-251-4/+4
* Inline GFpElementlloyd2010-02-253-172/+121