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

32 lines
336 B
C
Raw Normal View History


2014-04-24 21:34:45 +02:00
// EntropyContext.h
// Declares the cEntropyContext class representing a wrapper over entropy contexts in mbedTLS
2014-04-24 21:34:45 +02:00
#pragma once
#include "mbedtls/entropy.h"
2014-04-24 21:34:45 +02:00
class cEntropyContext
{
friend class cCtrDrbgContext;
public:
cEntropyContext(void);
~cEntropyContext();
2016-02-05 23:45:45 +02:00
2014-04-24 21:34:45 +02:00
protected:
mbedtls_entropy_context m_Entropy;
2014-04-24 21:34:45 +02:00
} ;