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

32 lines
333 B
C++
Raw Normal View History

2017-09-19 10:34:08 +02:00
2014-04-24 21:34:45 +02:00
// EntropyContext.h
2017-08-30 15:00:06 +01:00
// Declares the cEntropyContext class representing a wrapper over entropy contexts in mbedTLS
2014-04-24 21:34:45 +02:00
#pragma once
2017-08-30 15:00:06 +01:00
#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:
2017-08-30 15:00:06 +01:00
mbedtls_entropy_context m_Entropy;
2014-04-24 21:34:45 +02:00
} ;