summaryrefslogtreecommitdiff
path: root/dsa.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-05-15 17:36:53 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-05-15 17:36:53 +0000
commitb2f2c1f2c534d20cd06aed7717b19b8ab101e254 (patch)
tree245eb257f93ee67df6f7112490a727077e5df3ee /dsa.h
parent180a6796fd546fdb4a4d26b6a3a815bca4db5645 (diff)
downloadcryptopp-b2f2c1f2c534d20cd06aed7717b19b8ab101e254.tar.gz
*** empty log message ***
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@67 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'dsa.h')
-rw-r--r--dsa.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dsa.h b/dsa.h
index 8aa252c..0628b18 100644
--- a/dsa.h
+++ b/dsa.h
@@ -25,7 +25,7 @@ const int MIN_DSA_PRIME_LENGTH = DSA::MIN_PRIME_LENGTH;
const int MAX_DSA_PRIME_LENGTH = DSA::MAX_PRIME_LENGTH;
const int DSA_PRIME_LENGTH_MULTIPLE = DSA::PRIME_LENGTH_MULTIPLE;
-bool GenerateDSAPrimes(const byte *seed, unsigned int seedLength, int &counter, Integer &p, unsigned int primeLength, Integer &q)
+inline bool GenerateDSAPrimes(const byte *seed, unsigned int seedLength, int &counter, Integer &p, unsigned int primeLength, Integer &q)
{return DSA::GeneratePrimes(seed, seedLength, counter, p, primeLength, q);}
#endif