diff options
Diffstat (limited to 'src/pubkey/dl_group/dl_group.h')
-rw-r--r-- | src/pubkey/dl_group/dl_group.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pubkey/dl_group/dl_group.h b/src/pubkey/dl_group/dl_group.h index 885ccd2f9..bfc2c04e5 100644 --- a/src/pubkey/dl_group/dl_group.h +++ b/src/pubkey/dl_group/dl_group.h @@ -122,7 +122,7 @@ class BOTAN_DLL DL_Group * the value determined according to pbits. */ DL_Group(RandomNumberGenerator& rng, PrimeType type, - u32bit pbits, u32bit qbits = 0); + size_t pbits, size_t qbits = 0); /** * Create a DSA group with a given seed. @@ -132,7 +132,7 @@ class BOTAN_DLL DL_Group * @param qbits the desired bit size of the prime q. */ DL_Group(RandomNumberGenerator& rng, const MemoryRegion<byte>& seed, - u32bit pbits = 1024, u32bit qbits = 0); + size_t pbits = 1024, size_t qbits = 0); /** * Create a DL group. The prime q will be determined according to p. |