summaryrefslogtreecommitdiff
path: root/dh.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dh.cpp')
-rw-r--r--dh.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/dh.cpp b/dh.cpp
new file mode 100644
index 0000000..fc818b7
--- /dev/null
+++ b/dh.cpp
@@ -0,0 +1,14 @@
+// dh.cpp - written and placed in the public domain by Wei Dai
+
+#include "pch.h"
+#include "dh.h"
+
+NAMESPACE_BEGIN(CryptoPP)
+
+void DH_TestInstantiations()
+{
+ DH dh1;
+ DH dh2(NullRNG(), 10);
+}
+
+NAMESPACE_END