From 602b4194729d514e7988c6a0a063c94799283d2b Mon Sep 17 00:00:00 2001 From: lloyd Date: Mon, 8 Dec 2008 20:22:17 +0000 Subject: DL_Group constructor taking three BigInts had the order of q and g swapped in the header. --- src/pubkey/dl_group/dl_group.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pubkey/dl_group/dl_group.h b/src/pubkey/dl_group/dl_group.h index b999a8c04..2f59f86d9 100644 --- a/src/pubkey/dl_group/dl_group.h +++ b/src/pubkey/dl_group/dl_group.h @@ -145,7 +145,7 @@ class BOTAN_DLL DL_Group * @param q the prime q * @param g the base g */ - DL_Group(const BigInt& p, const BigInt& g, const BigInt& q); + DL_Group(const BigInt& p, const BigInt& q, const BigInt& g); private: static BigInt make_dsa_generator(const BigInt&, const BigInt&); -- cgit v1.2.3