From 490d36e65ac24e34e3021c2a0947384aee138c88 Mon Sep 17 00:00:00 2001 From: Malf Furious Date: Wed, 13 Apr 2016 21:05:14 -0400 Subject: Root commit for new Compass repository This is the Alpha version of ComPASS, originally developed sometime in 2014. --- cryptopp562/dh.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 cryptopp562/dh.cpp (limited to 'cryptopp562/dh.cpp') diff --git a/cryptopp562/dh.cpp b/cryptopp562/dh.cpp new file mode 100644 index 0000000..22097a0 --- /dev/null +++ b/cryptopp562/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 -- cgit v1.2.3