diff options
author | lloyd <[email protected]> | 2008-10-08 02:46:57 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-08 02:46:57 +0000 |
commit | ebfb6a6e9150820aa7e783f97bd5e0ac302adfbe (patch) | |
tree | cbdf8f8f7f223e59858d5024052a2fac1ea5b3dd /src/math/gfpmath/curve_gfp.h | |
parent | b46e73584275ce8dcf3114d124c82e92730d0dbc (diff) |
Reformatting
Diffstat (limited to 'src/math/gfpmath/curve_gfp.h')
-rw-r--r-- | src/math/gfpmath/curve_gfp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/math/gfpmath/curve_gfp.h b/src/math/gfpmath/curve_gfp.h index 49688b5dc..3024c32d8 100644 --- a/src/math/gfpmath/curve_gfp.h +++ b/src/math/gfpmath/curve_gfp.h @@ -54,7 +54,7 @@ class CurveGFp * @param mod a shared pointer to a GFpModulus object suitable for * *this. */ - void set_shrd_mod(std::tr1::shared_ptr<Botan::GFpModulus> const mod); + void set_shrd_mod(std::tr1::shared_ptr<GFpModulus> const mod); // getters @@ -116,7 +116,7 @@ class CurveGFp * Do NOT spread pointers to a GFpModulus over different threads! * @result a shared pointer to a GFpModulus object */ - inline std::tr1::shared_ptr<Botan::GFpModulus> const get_ptr_mod() const + inline std::tr1::shared_ptr<GFpModulus> const get_ptr_mod() const { return mp_mod; } @@ -128,7 +128,7 @@ class CurveGFp void swap(CurveGFp& other); private: - std::tr1::shared_ptr<Botan::GFpModulus> mp_mod; + std::tr1::shared_ptr<GFpModulus> mp_mod; GFpElement mA; GFpElement mB; mutable std::tr1::shared_ptr<GFpElement> mp_mres_a; |