summaryrefslogtreecommitdiff
path: root/dsa.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2003-05-15 17:36:53 +0000
committerweidai <weidai11@users.noreply.github.com>2003-05-15 17:36:53 +0000
commitde0f05d787a6e8d9892ece40927ef7cb234a6216 (patch)
tree245eb257f93ee67df6f7112490a727077e5df3ee /dsa.h
parent3bbbb93adb79a1286b2922b64d19e861f3b343e7 (diff)
downloadcryptopp-git-de0f05d787a6e8d9892ece40927ef7cb234a6216.tar.gz
*** empty log message ***
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 8aa252cf..0628b181 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