diff options
Diffstat (limited to 'plugins/CryptoPP/crypto/dh.cpp')
-rw-r--r-- | plugins/CryptoPP/crypto/dh.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/plugins/CryptoPP/crypto/dh.cpp b/plugins/CryptoPP/crypto/dh.cpp new file mode 100644 index 0000000000..b0b2e7c861 --- /dev/null +++ b/plugins/CryptoPP/crypto/dh.cpp @@ -0,0 +1,19 @@ +// dh.cpp - written and placed in the public domain by Wei Dai
+
+#include "pch.h"
+
+#ifndef CRYPTOPP_IMPORTS
+
+#include "dh.h"
+
+NAMESPACE_BEGIN(CryptoPP)
+
+void DH_TestInstantiations()
+{
+ DH dh1;
+ DH dh2(NullRNG(), 10);
+}
+
+NAMESPACE_END
+
+#endif
|