diff options
author | lloyd <[email protected]> | 2009-12-24 22:22:41 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-12-24 22:22:41 +0000 |
commit | 888fc3d0f2f6f1dc5e9764e83e9b7fd64da916d8 (patch) | |
tree | 1d296ec03fc39ebbdfde4d4c49d9257b4935a21c /src/math | |
parent | 90394a98550551d882fb4d9610b9b8bfa7271c76 (diff) | |
parent | d76d52bc7417bd703a868338cfe751b79dbb009a (diff) |
propagate from branch 'net.randombit.botan' (head a338abd543caa402c32acd952e865c8ec8e85a69)
to branch 'net.randombit.botan.gost_3410' (head d09208e0a933da2df52494876849c542e5a556ca)
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() << ")"; } } |