diff options
author | lloyd <[email protected]> | 2010-02-25 04:29:40 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-02-25 04:29:40 +0000 |
commit | b213bceeda3b6158896bfb9db0f8e68d11772cac (patch) | |
tree | dd3d70f00189f4497ed8b68f81573b727552bf82 /src/math/gfpmath/point_gfp.h | |
parent | 8ba3a81c5f1cbe488269df5e009de3d165eb0654 (diff) |
Remove point_{x,y,z} funcs, hide GFpElement entirely
Diffstat (limited to 'src/math/gfpmath/point_gfp.h')
-rw-r--r-- | src/math/gfpmath/point_gfp.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/math/gfpmath/point_gfp.h b/src/math/gfpmath/point_gfp.h index 6613da2e2..9c593b5fd 100644 --- a/src/math/gfpmath/point_gfp.h +++ b/src/math/gfpmath/point_gfp.h @@ -11,7 +11,6 @@ #define BOTAN_POINT_GFP_H__ #include <botan/curve_gfp.h> -#include <botan/gfp_element.h> #include <vector> namespace Botan { @@ -174,10 +173,6 @@ class BOTAN_DLL PointGFp */ bool operator==(const PointGFp& other) const; private: - GFpElement point_x() const { return GFpElement(curve.get_p(), coord_x); } - GFpElement point_y() const { return GFpElement(curve.get_p(), coord_y); } - GFpElement point_z() const { return GFpElement(curve.get_p(), coord_z); } - CurveGFp curve; BigInt coord_x, coord_y, coord_z; }; |