summaryrefslogtreecommitdiffstats
path: root/src/PolarSSL++/EntropyContext.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-04-24 21:34:45 +0200
committermadmaxoft <github@xoft.cz>2014-04-24 21:53:41 +0200
commitc701adbd241ea84d6f64842e8015c1009a41d786 (patch)
treef79c837e19767ece8c914e3dd001f944079b0aeb /src/PolarSSL++/EntropyContext.h
parentChanged cByteBuffer constructor to take a size_t instead of int. (diff)
downloadcuberite-c701adbd241ea84d6f64842e8015c1009a41d786.tar
cuberite-c701adbd241ea84d6f64842e8015c1009a41d786.tar.gz
cuberite-c701adbd241ea84d6f64842e8015c1009a41d786.tar.bz2
cuberite-c701adbd241ea84d6f64842e8015c1009a41d786.tar.lz
cuberite-c701adbd241ea84d6f64842e8015c1009a41d786.tar.xz
cuberite-c701adbd241ea84d6f64842e8015c1009a41d786.tar.zst
cuberite-c701adbd241ea84d6f64842e8015c1009a41d786.zip
Diffstat (limited to 'src/PolarSSL++/EntropyContext.h')
-rw-r--r--src/PolarSSL++/EntropyContext.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/PolarSSL++/EntropyContext.h b/src/PolarSSL++/EntropyContext.h
new file mode 100644
index 000000000..bc7fff066
--- /dev/null
+++ b/src/PolarSSL++/EntropyContext.h
@@ -0,0 +1,31 @@
+
+// EntropyContext.h
+
+// Declares the cEntropyContext class representing a wrapper over entropy contexts in PolarSSL
+
+
+
+
+
+#pragma once
+
+#include "polarssl/entropy.h"
+
+
+
+
+
+class cEntropyContext
+{
+ friend class cCtrDrbgContext;
+public:
+ cEntropyContext(void);
+ ~cEntropyContext();
+
+protected:
+ entropy_context m_Entropy;
+} ;
+
+
+
+