summaryrefslogblamecommitdiffstats
path: root/src/mbedTLS++/EntropyContext.h
blob: 1c1695340bdb27c6e50298a5df7fbf24563ca1ba (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
 

                   
                                                                                             






            
                            










                                     
 
          
                                          




   

// 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;
} ;