diff options
author | lloyd <[email protected]> | 2010-03-02 04:20:36 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-02 04:20:36 +0000 |
commit | b684176c5967c55f318c517f10900d64d29f9b92 (patch) | |
tree | 0f57c7e30108b9005a9ecdaeb055a8e614d43411 /src/math/numbertheory/point_gfp.h | |
parent | b822cc605b324bf449fb3e0a2185b83cd4a157e3 (diff) |
Rename PointGFp::get_jac_proj_{x,y,z} simply get_{x,y,z}
Diffstat (limited to 'src/math/numbertheory/point_gfp.h')
-rw-r--r-- | src/math/numbertheory/point_gfp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/math/numbertheory/point_gfp.h b/src/math/numbertheory/point_gfp.h index 9c9c3334f..3596fe129 100644 --- a/src/math/numbertheory/point_gfp.h +++ b/src/math/numbertheory/point_gfp.h @@ -127,19 +127,19 @@ class BOTAN_DLL PointGFp * get the jacobian projective x coordinate * @result jacobian projective x coordinate */ - const BigInt& get_jac_proj_x() const { return coord_x; } + const BigInt& get_x() const { return coord_x; } /** * get the jacobian projective y coordinate * @result jacobian projective y coordinate */ - const BigInt& get_jac_proj_y() const { return coord_y; } + const BigInt& get_y() const { return coord_y; } /** * get the jacobian projective z coordinate * @result jacobian projective z coordinate */ - const BigInt& get_jac_proj_z() const { return coord_z; } + const BigInt& get_z() const { return coord_z; } /** * Is this the point at infinity? |