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

32 lines
333 B
C
Raw Normal View History

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