diff options
author | lloyd <[email protected]> | 2010-03-13 04:54:04 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-13 04:54:04 +0000 |
commit | 1d07b3d21c917376bfec79332c01619938e0f0aa (patch) | |
tree | 68d5fa988ea7afae427d93b4f7b0ad2c962350cd /src/math/numbertheory/point_gfp.h | |
parent | b027160b916ba9a67de5e2f34df63bcdc02f3987 (diff) |
Use Montgomery reduction for the important parts of PointGFp, using
code cobbled together from 1.8/InSiTo. Faster than it was in 1.9.4, but
still quite slow.
Diffstat (limited to 'src/math/numbertheory/point_gfp.h')
-rw-r--r-- | src/math/numbertheory/point_gfp.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/math/numbertheory/point_gfp.h b/src/math/numbertheory/point_gfp.h index 34f761cca..c86e61381 100644 --- a/src/math/numbertheory/point_gfp.h +++ b/src/math/numbertheory/point_gfp.h @@ -152,9 +152,6 @@ class BOTAN_DLL PointGFp CurveGFp curve; BigInt coord_x, coord_y, coord_z; - - // Values for Montgomery operations - BigInt r, r_inv, p_dash; }; // relational operators |