diff options
Diffstat (limited to 'src/math')
-rw-r--r-- | src/math/numbertheory/reducer.h | 8 |
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; |