1
0

Initial C++ SSL classes.

This commit is contained in:
madmaxoft
2014-04-24 21:34:45 +02:00
parent 449cf77420
commit c701adbd24
7 changed files with 248 additions and 2 deletions

View File

@@ -0,0 +1,29 @@
// 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);
}