summaryrefslogtreecommitdiffstats
path: root/src/PolarSSL++/EntropyContext.h
blob: bc7fff066fda6a93b61bc5817b931e9d23926592 (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
30
31

// EntropyContext.h

// Declares the cEntropyContext class representing a wrapper over entropy contexts in PolarSSL





#pragma once

#include "polarssl/entropy.h"





class cEntropyContext
{
	friend class cCtrDrbgContext;
public:
	cEntropyContext(void);
	~cEntropyContext();
	
protected:
	entropy_context m_Entropy;
} ;