Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
folium-app
GitHub Repository: folium-app/Folium
Path: blob/a-new-beginning/SharedDependencies/Sources/cryptopp/dh.cpp
2 views
1
// dh.cpp - originally 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
9
NAMESPACE_BEGIN(CryptoPP)
10
11
#if defined(CRYPTOPP_DEBUG) && !defined(CRYPTOPP_DOXYGEN_PROCESSING)
12
void DH_TestInstantiations()
13
{
14
DH dh1;
15
DH dh2(NullRNG(), 10);
16
}
17
#endif
18
19
NAMESPACE_END
20
21
#endif
22
23