1// dh.cpp - written and placed in the public domain by Wei Dai
2
3#include "pch.h"
4
5#ifndef CRYPTOPP_IMPORTS
6
7#include "dh.h"
8
9NAMESPACE_BEGIN(CryptoPP)
10
11void DH_TestInstantiations()
12{
13	DH dh1;
14	DH dh2(NullRNG(), 10);
15}
16
17NAMESPACE_END
18
19#endif
20