diff options
author | lloyd <[email protected]> | 2010-02-25 19:37:19 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-02-25 19:37:19 +0000 |
commit | 9d1cbc6d07a81289612d09625fc57afcbd9ac995 (patch) | |
tree | fbae5124687591c34b37dc19445ebc60c1b87d77 /src/math | |
parent | 4eca3e8f0712cbd3380275a2782ee02d3dfb677c (diff) |
Inline PointGFp constructors
Diffstat (limited to 'src/math')
-rw-r--r-- | src/math/gfpmath/point_gfp.cpp | 33 | ||||
-rw-r--r-- | src/math/gfpmath/point_gfp.h | 31 |
2 files changed, 13 insertions, 51 deletions
diff --git a/src/math/gfpmath/point_gfp.cpp b/src/math/gfpmath/point_gfp.cpp index e5236787e..9bf221ddb 100644 --- a/src/math/gfpmath/point_gfp.cpp +++ b/src/math/gfpmath/point_gfp.cpp @@ -39,37 +39,6 @@ BigInt decompress_point(bool yMod2, } -// construct the point at infinity or a random point -PointGFp::PointGFp(const CurveGFp& curve) : - curve(curve), - coord_x(0), - coord_y(1), - coord_z(0) - { - } - -// construct a point given its jacobian projective coordinates -PointGFp::PointGFp(const CurveGFp& curve, - const BigInt& x, - const BigInt& y, - const BigInt& z) : - curve(curve), - coord_x(x), - coord_y(y), - coord_z(z) - { - } - -PointGFp::PointGFp(const CurveGFp& curve, - const BigInt& x, - const BigInt& y) : - curve(curve), - coord_x(x), - coord_y(y), - coord_z(1) - { - } - // arithmetic operators PointGFp& PointGFp::operator+=(const PointGFp& rhs) { @@ -504,4 +473,4 @@ PointGFp create_random_point(RandomNumberGenerator& rng, } } -} // namespace Botan +} diff --git a/src/math/gfpmath/point_gfp.h b/src/math/gfpmath/point_gfp.h index a8c6e733c..40feb3fa8 100644 --- a/src/math/gfpmath/point_gfp.h +++ b/src/math/gfpmath/point_gfp.h @@ -44,7 +44,8 @@ class BOTAN_DLL PointGFp * Construct the point O * @param curve The base curve */ - PointGFp(const CurveGFp& curve); + PointGFp(const CurveGFp& curve) : + curve(curve), coord_x(0), coord_y(1), coord_z(0) {} /** * Construct a point given its affine coordinates @@ -52,7 +53,9 @@ class BOTAN_DLL PointGFp * @param x affine x coordinate * @param y affine y coordinate */ - PointGFp(const CurveGFp& curve, const BigInt& x, const BigInt& y); + PointGFp(const CurveGFp& curve, + const BigInt& x, const BigInt& y) : + curve(curve), coord_x(x), coord_y(y), coord_z(1) {} /** * Construct a point given its jacobian projective coordinates @@ -62,9 +65,8 @@ class BOTAN_DLL PointGFp * @param z jacobian projective z coordinate */ PointGFp(const CurveGFp& curve, - const BigInt& x, - const BigInt& y, - const BigInt& z); + const BigInt& x, const BigInt& y, const BigInt& z) : + curve(curve), coord_x(x), coord_y(y), coord_z(z) {} //PointGFp(const PointGFp& other) = default; //PointGFp& operator=(const PointGFp& other) = default; @@ -190,23 +192,14 @@ PointGFp BOTAN_DLL create_random_point(RandomNumberGenerator& rng, SecureVector<byte> BOTAN_DLL EC2OSP(const PointGFp& point, byte format); PointGFp BOTAN_DLL OS2ECP(const MemoryRegion<byte>& os, const CurveGFp& curve); -// swaps the states of point1 and point2, does not throw! -// cf. Meyers, Item 25 -inline -void swap(PointGFp& point1, PointGFp& point2) - { - point1.swap(point2); - } - -} // namespace Botan +} namespace std { -// swaps the states of point1 and point2, does not throw! -// cf. Meyers, Item 25 -template<> inline void -swap<Botan::PointGFp>(Botan::PointGFp& x, Botan::PointGFp& y) { x.swap(y); } +template<> +inline void swap<Botan::PointGFp>(Botan::PointGFp& x, Botan::PointGFp& y) + { x.swap(y); } -} // namespace std +} #endif |