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

32 lines
333 B
C
Raw Normal View History

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