1
0
cuberite-2a/src/PolarSSL++/EntropyContext.cpp
2014-04-24 21:53:41 +02:00

30 lines
322 B
C++

// EntropyContext.cpp
// Implements the cEntropyContext class representing a wrapper over entropy contexts in PolarSSL
#include "Globals.h"
#include "EntropyContext.h"
cEntropyContext::cEntropyContext(void)
{
entropy_init(&m_Entropy);
}
cEntropyContext::~cEntropyContext()
{
entropy_free(&m_Entropy);
}