diff options
author | lloyd <[email protected]> | 2008-12-08 20:22:17 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-12-08 20:22:17 +0000 |
commit | 602b4194729d514e7988c6a0a063c94799283d2b (patch) | |
tree | b121d6cc775188e2b38cc66395c7c73aae11f205 /src | |
parent | 5de3c5deb3ef63e1759bdf73337ffb45e063dd9c (diff) |
DL_Group constructor taking three BigInts had the order of q and g swapped
in the header.
Diffstat (limited to 'src')
-rw-r--r-- | src/pubkey/dl_group/dl_group.h | 2 |
1 files changed, 1 insertions, 1 deletions
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&); |