00001 // dh.cpp - written and placed in the public domain by Wei Dai 00002 00003 #include "pch.h" 00004 00005 #ifndef CRYPTOPP_IMPORTS 00006 00007 #include "dh.h" 00008 00009 NAMESPACE_BEGIN(CryptoPP) 00010 00011 #if !defined(NDEBUG) && !defined(CRYPTOPP_DOXYGEN_PROCESSING) 00012 void DH_TestInstantiations() 00013 { 00014 DH dh1; 00015 DH dh2(NullRNG(), 10); 00016 } 00017 #endif 00018 00019 NAMESPACE_END 00020 00021 #endif