diff options
author | lloyd <[email protected]> | 2009-11-20 05:50:46 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-11-20 05:50:46 +0000 |
commit | 06943ede148fc1dc69cc5dae511e6c68f4ffb214 (patch) | |
tree | a865c7dbea96302744475fcaa6a2a84c253dd048 /src/math/gfpmath | |
parent | 461e0b52e176ec7e4ebb5d0eaa0e0c53742066c9 (diff) | |
parent | eacba105e221c84885b4bbb0409d7e7755d32ffb (diff) |
propagate from branch 'net.randombit.botan' (head b431f4bc404f3ed4a5332b69100ff903fbbb1d6a)
to branch 'net.randombit.botan.gost_3410' (head ecd662f4afc7f412d2dd9ec8fd6ac4ac47aa1c13)
Diffstat (limited to 'src/math/gfpmath')
-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() << ")"; } } |