1
0
cuberite-2a/src/PolarSSL++/EntropyContext.h

32 lines
328 B
C
Raw Normal View History

2014-04-24 19:34:45 +00:00
// 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;
} ;