summaryrefslogtreecommitdiffstats
path: root/src/mbedTLS++/EntropyContext.h
blob: 37b6f120e5d1f7d9703f526d577c54b637fcad1d (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 mbedTLS





#pragma once

#include "mbedtls/entropy.h"





class cEntropyContext
{
	friend class cCtrDrbgContext;
public:
	cEntropyContext(void);
	~cEntropyContext();

protected:
	mbedtls_entropy_context m_Entropy;
} ;