Cuberite
A lightweight, fast and extensible game server for Minecraft
EntropyContext.h
Go to the documentation of this file.
1 
2 // EntropyContext.h
3 
4 // Declares the cEntropyContext class representing a wrapper over entropy contexts in mbedTLS
5 
6 
7 
8 
9 
10 #pragma once
11 
12 #include "mbedtls/entropy.h"
13 
14 
15 
16 
17 
19 {
20  friend class cCtrDrbgContext;
21 public:
22  cEntropyContext(void);
24 
25 protected:
26  mbedtls_entropy_context m_Entropy;
27 } ;
28 
29 
30 
31 
mbedtls_entropy_context m_Entropy