From b4b1b530c13b6b6bac864cd205dae4f2c56418a3 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sun, 4 Dec 2016 02:22:52 -0500 Subject: [PATCH] Updated documentation (Issue 328) --- dh.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/dh.h b/dh.h index e1bda011..35379b43 100644 --- a/dh.h +++ b/dh.h @@ -234,13 +234,11 @@ struct DH : public DH_Domain DH(RandomNumberGenerator &rng, unsigned int modulusBits) : DH_Domain(rng, modulusBits) {} //! \brief Initialize a Diffie-Hellman object - //! \param rng a RandomNumberGenerator derived class //! \param p the modulus //! \param g the generator DH(const Integer &p, const Integer &g) : DH_Domain(p, g) {} //! \brief Initialize a Diffie-Hellman object - //! \param rng a RandomNumberGenerator derived class //! \param p the modulus //! \param q the subgroup order //! \param g the generator @@ -255,14 +253,12 @@ struct DH : public DH_Domain {AccessGroupParameters().Initialize(rng, modulusBits);} //! \brief Initialize a Diffie-Hellman object - //! \param rng a RandomNumberGenerator derived class //! \param p the modulus //! \param g the generator void Initialize(const Integer &p, const Integer &g) {AccessGroupParameters().Initialize(p, g);} //! \brief Initialize a Diffie-Hellman object - //! \param rng a RandomNumberGenerator derived class //! \param p the modulus //! \param q the subgroup order //! \param g the generator