aboutsummaryrefslogtreecommitdiffstats
path: root/src/math/numbertheory
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-02-25 19:23:43 +0000
committerlloyd <[email protected]>2010-02-25 19:23:43 +0000
commit23c82b7a5a17ee39dc69159592a7d7e1e8d03740 (patch)
tree430ef44b2dca4ca986e6d99afce00b7cb9316b3b /src/math/numbertheory
parent6ef4dfa0e7ba4b6e618bdb42ed78bd17a206ba4c (diff)
Name vars in Modular_Reducer decl
Diffstat (limited to 'src/math/numbertheory')
-rw-r--r--src/math/numbertheory/reducer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/math/numbertheory/reducer.h b/src/math/numbertheory/reducer.h
index d234e0735..baaab47a4 100644
--- a/src/math/numbertheory/reducer.h
+++ b/src/math/numbertheory/reducer.h
@@ -18,14 +18,14 @@ namespace Botan {
class BOTAN_DLL Modular_Reducer
{
public:
- BigInt multiply(const BigInt&, const BigInt&) const;
- BigInt square(const BigInt&) const;
- BigInt reduce(const BigInt&) const;
+ BigInt multiply(const BigInt& x, const BigInt& y) const;
+ BigInt square(const BigInt& x) const;
+ BigInt reduce(const BigInt& x) const;
bool initialized() const { return (mod_words != 0); }
Modular_Reducer() { mod_words = 0; }
- Modular_Reducer(const BigInt&);
+ Modular_Reducer(const BigInt& mod);
private:
BigInt modulus, modulus_2, mu;
u32bit mod_words, mod2_words, mu_words;