summaryrefslogtreecommitdiffstats
path: root/src/PolarSSL++/EntropyContext.cpp
blob: 9c59b3f1124aa3e61a226ee86fb3d8268f0efe53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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);
}