1
0
cuberite-2a/src/PolarSSL++/EntropyContext.cpp

30 lines
322 B
C++
Raw Normal View History

2014-04-24 19:34:45 +00:00
// 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);
}