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

32 lines
333 B
C++

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