diff options
author | lloyd <[email protected]> | 2009-12-16 02:46:56 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-12-16 02:46:56 +0000 |
commit | d76d52bc7417bd703a868338cfe751b79dbb009a (patch) | |
tree | 9451d7d205d0e0cea61923abcf580b052e4ecbf8 /src/math | |
parent | 12afeca214c4414a0ced0bc4654d0fc5908dc77b (diff) | |
parent | d1ce64bedee53f0050d44f86db070d87bf78926e (diff) |
propagate from branch 'net.randombit.botan' (head 744dccf92270cf16b80b50ee2759424c9866b256)
to branch 'net.randombit.botan.gost_3410' (head 761e22ccc5785e8d699f4ba80b8f72858aa5ca75)
Diffstat (limited to 'src/math')
-rw-r--r-- | src/math/gfpmath/curve_gfp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/gfpmath/curve_gfp.cpp b/src/math/gfpmath/curve_gfp.cpp index 9a3ffd482..3cdb08a65 100644 --- a/src/math/gfpmath/curve_gfp.cpp +++ b/src/math/gfpmath/curve_gfp.cpp @@ -159,7 +159,7 @@ bool operator==(const CurveGFp& lhs, const CurveGFp& rhs) std::ostream& operator<<(std::ostream& output, const CurveGFp& elem) { - return output << "y^2f = x^3 + (" << elem.get_a() << ")x + (" << elem.get_b() << ")"; + return output << "y^2 = x^3 + (" << elem.get_a() << ")x + (" << elem.get_b() << ")"; } } |